wok annotate fluxbox/receipt @ rev 2868
Add: fluxbox window manager
author | Mallory MOLLO <mallory@skyrock.com> |
---|---|
date | Sat May 02 23:54:51 2009 +0200 (2009-05-02) |
parents | |
children | 186299c9a6f5 |
rev | line source |
---|---|
mallory@2868 | 1 # SliTaz package receipt. |
mallory@2868 | 2 |
mallory@2868 | 3 PACKAGE="fluxbox" |
mallory@2868 | 4 VERSION="1.0.0" |
mallory@2868 | 5 CATEGORY="x-window" |
mallory@2868 | 6 SHORT_DESC="Fluxbox is a windowmanager for X. It is very light on resources and easy to handle but yet full of features." |
mallory@2868 | 7 MAINTAINER="mallory@sweetpeople.org" |
mallory@2868 | 8 DEPENDS="" |
mallory@2868 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
mallory@2868 | 10 WEB_SITE="http://www.fluxbox.org/" |
mallory@2868 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
mallory@2868 | 12 |
mallory@2868 | 13 # Rules to configure and make the package. |
mallory@2868 | 14 compile_rules() |
mallory@2868 | 15 { |
mallory@2868 | 16 cd $src |
mallory@2868 | 17 patch -p1 < ../stuff/fluxbox-gcc-4.3.3.diff |
mallory@2868 | 18 ./configure \ |
mallory@2868 | 19 --prefix=/usr \ |
mallory@2868 | 20 --infodir=/usr/share/info \ |
mallory@2868 | 21 --mandir=/usr/share/man \ |
mallory@2868 | 22 $CONFIGURE_ARGS && |
mallory@2868 | 23 make && make DESTDIR=$PWD/_pkg install |
mallory@2868 | 24 } |
mallory@2868 | 25 |
mallory@2868 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2868 | 27 genpkg_rules() |
mallory@2868 | 28 { |
mallory@2868 | 29 mkdir -p $fs/usr |
mallory@2868 | 30 cp -a $_pkg/usr/bin $fs/usr |
mallory@2868 | 31 cp -a $_pkg/usr/share $fs/usr |
mallory@2868 | 32 } |
mallory@2868 | 33 |