wok view xfce4-taskmanager/receipt @ rev 8617

Fix syntax error in xfburn.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Feb 14 15:52:23 2011 +0000 (2011-02-14)
parents 413b0174114a
children a3ce54180620
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-taskmanager"
4 VERSION="1.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Simple taskmanager for Xfce."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxfce4util libxfcegui4 startup-notification"
9 BUILD_DEPENDS="libxfce4util-dev libxfcegui4-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://goodies.xfce.org/projects/applications/xfce4-taskmanager"
12 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/1.0/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/applications
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a stuff/*.desktop $fs/usr/share/applications
32 }