wok annotate fluxbox/receipt @ rev 2870

fluxbox: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 02 23:04:43 2009 +0200 (2009-05-02)
parents 186299c9a6f5
children 192bfaa1ae87
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"
pascal@2870 8 DEPENDS="fontconfig imlib2 libiconv xorg-libICE xorg-libSM xorg-libX11 \
pascal@2870 9 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXft xorg-libXinerama \
pascal@2870 10 xorg-libXpm xorg-libXrandr xorg-libXrender"
pascal@2870 11 BUILD_DEPENDS="xorg-dev"
mallory@2868 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mallory@2868 13 WEB_SITE="http://www.fluxbox.org/"
mallory@2868 14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
mallory@2868 15
mallory@2868 16 # Rules to configure and make the package.
mallory@2868 17 compile_rules()
mallory@2868 18 {
mallory@2868 19 cd $src
pascal@2870 20 patch -p1 < ../stuff/fluxbox-gcc-4.3.3.diff
mallory@2868 21 ./configure \
mallory@2868 22 --prefix=/usr \
mallory@2868 23 --infodir=/usr/share/info \
mallory@2868 24 --mandir=/usr/share/man \
mallory@2868 25 $CONFIGURE_ARGS &&
mallory@2868 26 make && make DESTDIR=$PWD/_pkg install
mallory@2868 27 }
mallory@2868 28
mallory@2868 29 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2868 30 genpkg_rules()
mallory@2868 31 {
mallory@2868 32 mkdir -p $fs/usr
mallory@2868 33 cp -a $_pkg/usr/bin $fs/usr
pascal@2870 34 cp -a $_pkg/usr/share $fs/usr
mallory@2868 35 }
mallory@2868 36