wok view lxtask/receipt @ rev 988

hal: Fix pci.ids while compiling
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jul 03 22:57:27 2008 +0200 (2008-07-03)
parents
children b94e60fe7b4e
line source
1 # SliTaz package receipt.
3 PACKAGE="lxtask"
4 VERSION="0.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Ssytem task manager with a nice GTK interface."
7 BUILD_DEPENDS="gtk+-dev"
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://lxde.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }