wok annotate lxtask/receipt @ rev 2518

l*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 16 22:15:30 2009 +0000 (2009-03-16)
parents b94e60fe7b4e
children f64b4bba8c36
rev   line source
pankso@705 1 # SliTaz package receipt.
pankso@705 2
pankso@705 3 PACKAGE="lxtask"
pankso@705 4 VERSION="0.1"
pankso@705 5 CATEGORY="system-tools"
pankso@705 6 SHORT_DESC="Ssytem task manager with a nice GTK interface."
pascal@2518 7 DEPENDS="gtk+ xorg-libXdamage"
pascal@1461 8 BUILD_DEPENDS="pkg-config gtk+-dev xorg-xproto"
pankso@705 9 MAINTAINER="pankso@slitaz.org"
pankso@705 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@705 11 WEB_SITE="http://lxde.sourceforge.net/"
pankso@705 12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
pankso@705 13
pankso@705 14 # Rules to configure and make the package.
pankso@705 15 compile_rules()
pankso@705 16 {
pankso@705 17 cd $src
pankso@705 18 ./configure \
pankso@705 19 --prefix=/usr \
pascal@1461 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1461 21 make &&
pankso@705 22 make DESTDIR=$PWD/_pkg install
pankso@705 23 }
pankso@705 24
pankso@705 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@705 26 genpkg_rules()
pankso@705 27 {
pankso@705 28 mkdir -p $fs/usr
pankso@705 29 cp -a $_pkg/usr/bin $fs/usr
pankso@705 30 }
pankso@705 31