wok annotate lxtask/receipt @ rev 15749

vte: save a few Kb (mv .la and gir* file to -dev pkg)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 03 11:32:22 2014 +0100 (2014-01-03)
parents a55d1788b231
children 523db8f94fcb
rev   line source
pankso@705 1 # SliTaz package receipt.
pankso@705 2
pankso@705 3 PACKAGE="lxtask"
devl547@11277 4 VERSION="0.1.4"
pankso@705 5 CATEGORY="system-tools"
pankso@705 6 SHORT_DESC="Ssytem task manager with a nice GTK interface."
pankso@705 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@705 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@705 10 WEB_SITE="http://lxde.sourceforge.net/"
pankso@705 11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
pankso@705 12
pascal@15000 13 DEPENDS="gtk+ xorg-libXdamage"
pascal@15000 14 BUILD_DEPENDS="pkg-config gtk+-dev intltool gettext xorg-xproto"
pascal@15000 15
pankso@705 16 # Rules to configure and make the package.
pankso@705 17 compile_rules()
pankso@705 18 {
pankso@705 19 cd $src
pankso@705 20 ./configure \
pankso@705 21 --prefix=/usr \
pascal@1461 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1461 23 make &&
pascal@15000 24 make DESTDIR=$DESTDIR install
pankso@705 25 }
pankso@705 26
pankso@705 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@705 28 genpkg_rules()
pankso@705 29 {
pankso@705 30 mkdir -p $fs/usr
pascal@15000 31 cp -a $install/usr/bin $fs/usr
pankso@705 32 }
pankso@705 33