wok annotate xfce4-taskmanager/receipt @ rev 4866
Add: xfce4-taskmanager
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu Feb 04 22:33:22 2010 +0100 (2010-02-04) |
parents | |
children | 413b0174114a |
rev | line source |
---|---|
erjo@4866 | 1 # SliTaz package receipt. |
erjo@4866 | 2 |
erjo@4866 | 3 PACKAGE="xfce4-taskmanager" |
erjo@4866 | 4 VERSION="0.3.2" |
erjo@4866 | 5 CATEGORY="x-window" |
erjo@4866 | 6 SHORT_DESC="Simple taskmanager for Xfce." |
erjo@4866 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4866 | 8 DEPENDS="libxfce4util libxfcegui4" |
erjo@4866 | 9 BUILD_DEPENDS="libxfce4util-dev libxfcegui4-dev" |
erjo@4866 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@4866 | 11 WEB_SITE="http://goodies.xfce.org/projects/applications/xfce4-taskmanager" |
erjo@4866 | 12 WGET_URL="http://goodies.xfce.org/releases/xfce4-taskmanager/$TARBALL" |
erjo@4866 | 13 |
erjo@4866 | 14 # Rules to configure and make the package. |
erjo@4866 | 15 compile_rules() |
erjo@4866 | 16 { |
erjo@4866 | 17 cd $src |
erjo@4866 | 18 ./configure \ |
erjo@4866 | 19 --prefix=/usr \ |
erjo@4866 | 20 --infodir=/usr/share/info \ |
erjo@4866 | 21 --mandir=/usr/share/man \ |
erjo@4866 | 22 $CONFIGURE_ARGS && |
erjo@4866 | 23 make && make DESTDIR=$PWD/_pkg install |
erjo@4866 | 24 } |
erjo@4866 | 25 |
erjo@4866 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4866 | 27 genpkg_rules() |
erjo@4866 | 28 { |
erjo@4866 | 29 mkdir -p $fs/usr/share/applications |
erjo@4866 | 30 cp -a $_pkg/usr/bin $fs/usr |
erjo@4866 | 31 cp -a stuff/*.desktop $fs/usr/share/applications |
erjo@4866 | 32 } |
erjo@4866 | 33 |