wok view fluxbox/receipt @ rev 2869

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