wok view matchbox-window-manager-2/receipt @ rev 13951

add python netifaces
author ernia <monghitri@aruba.it>
date Tue Jan 29 21:03:49 2013 +0000 (2013-01-29)
parents dbf89b0ec274
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="matchbox-window-manager-2"
4 VERSION="2106"
5 CATEGORY="x-window"
6 SHORT_DESC="Matchbox Window Manager v2."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://matchbox-project.org/"
10 WGET_URL="svn|http://svn.o-hand.com/repos/matchbox/trunk/$PACKAGE"
11 BRANCH="$VERSION"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev subversion libffi autoconf automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lexpat"
21 ./autogen.sh \
22 --enable-png-theme \
23 --enable-composite-manager=xrender \
24 --enable-matchbox-remote \
25 --with-pango \
26 --with-gtk \
27 $CONFIGURE_ARGS &&
28 # Fix Makefile identation.
29 sed -i s'/ / /' Makefile &&
30 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/share $fs/usr
39 }