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

Up: slitaz-tools (5.1) - Bunch of new stuff and fixes from the contributors community
author Christophe Lincoln <pankso@slitaz.org>
date Wed Nov 14 21:48:16 2012 +0100 (2012-11-14)
parents 80e401c75f3c
children badf7e0b2bca
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"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh \
21 --enable-png-theme \
22 --enable-composite-manager=xrender \
23 --enable-matchbox-remote \
24 --with-pango \
25 --with-gtk \
26 $CONFIGURE_ARGS &&
27 # Fix Makefile identation.
28 sed -i s'/ / /' Makefile &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share $fs/usr
38 }