wok annotate lxtask/receipt @ rev 5195

slitaz-doc: fix version for 3.0
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 17:16:33 2010 +0200 (2010-03-28)
parents 2e55de4816a6
children 105c1dc58ba4
rev   line source
pankso@705 1 # SliTaz package receipt.
pankso@705 2
pankso@705 3 PACKAGE="lxtask"
rcx@3795 4 VERSION="0.1.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"
rcx@3795 8 BUILD_DEPENDS="pkg-config gtk+-dev intltool gettext 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