wok-6.x annotate xorg-xkill/receipt @ rev 8241
Up: tazchroot to 0.0.4.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Jan 28 14:27:42 2011 +0000 (2011-01-28) |
parents | ed6a98ff2fc6 |
children | 02bbaa9d12ba |
rev | line source |
---|---|
mallory@1266 | 1 # SliTaz package receipt. |
mallory@1266 | 2 |
mallory@1266 | 3 PACKAGE="xorg-xkill" |
mallory@1266 | 4 SOURCE="xkill" |
slaxemulator@7255 | 5 VERSION="1.0.3" |
mallory@1266 | 6 CATEGORY="x-window" |
mallory@1266 | 7 SHORT_DESC="X application killer" |
mallory@1266 | 8 MAINTAINER="mallory@sweetpeople.org" |
slaxemulator@8029 | 9 DEPENDS="xorg-libXmu" |
slaxemulator@8029 | 10 BUILD_DEPENDS="xorg-libXmu-dev" |
gokhlayeh@6993 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@2086 | 12 WEB_SITE="http://www.x.org/" |
mallory@1266 | 13 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL" |
mallory@1266 | 14 |
mallory@1266 | 15 # Rules to configure and make the package. |
mallory@1266 | 16 compile_rules() |
mallory@1266 | 17 { |
mallory@1266 | 18 cd $src |
mallory@1266 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2086 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2086 | 21 make && |
mallory@1266 | 22 make DESTDIR=$PWD/_pkg install |
mallory@1266 | 23 } |
mallory@1266 | 24 |
mallory@1266 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@1266 | 26 genpkg_rules() |
mallory@1266 | 27 { |
mallory@1266 | 28 mkdir -p $fs/usr |
mallory@1266 | 29 cp -a $_pkg/usr/bin $fs/usr |
mallory@1266 | 30 strip -s $fs/usr/bin/* |
mallory@1266 | 31 } |
mallory@1266 | 32 |