wok-next annotate xorg-xkill/receipt @ rev 1696
Add perl-net-mysql
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 11 20:54:37 2008 +0000 (2008-11-11) |
parents | |
children | aa0dad286215 |
rev | line source |
---|---|
mallory@1266 | 1 # SliTaz package receipt. |
mallory@1266 | 2 |
mallory@1266 | 3 PACKAGE="xorg-xkill" |
mallory@1266 | 4 SOURCE="xkill" |
mallory@1266 | 5 VERSION="1.0.1" |
mallory@1266 | 6 CATEGORY="x-window" |
mallory@1266 | 7 SHORT_DESC="X application killer" |
mallory@1266 | 8 MAINTAINER="mallory@sweetpeople.org" |
mallory@1266 | 9 DEPENDS="" |
mallory@1266 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
mallory@1266 | 11 WEB_SITE="x.org" |
mallory@1266 | 12 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL" |
mallory@1266 | 13 |
mallory@1266 | 14 # Rules to configure and make the package. |
mallory@1266 | 15 compile_rules() |
mallory@1266 | 16 { |
mallory@1266 | 17 cd $src |
mallory@1266 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
mallory@1266 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS |
mallory@1266 | 20 make |
mallory@1266 | 21 make DESTDIR=$PWD/_pkg install |
mallory@1266 | 22 } |
mallory@1266 | 23 |
mallory@1266 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@1266 | 25 genpkg_rules() |
mallory@1266 | 26 { |
mallory@1266 | 27 mkdir -p $fs/usr |
mallory@1266 | 28 cp -a $_pkg/usr/bin $fs/usr |
mallory@1266 | 29 strip -s $fs/usr/bin/* |
mallory@1266 | 30 } |
mallory@1266 | 31 |