wok-next annotate xorg-xkill/receipt @ rev 2789
Add Hungarian Openbox menu file (Thanks Mih?ly)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Apr 28 01:36:23 2009 +0200 (2009-04-28) |
parents | aa0dad286215 |
children | 07ae722ec64e |
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" |
pascal@2416 | 9 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXmu" |
mallory@1266 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2086 | 11 WEB_SITE="http://www.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 \ |
pascal@2086 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2086 | 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 |