wok annotate xorg-xkill/receipt @ rev 7255

Up: xorg-xkill to 1.0.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Nov 14 15:47:11 2010 +0000 (2010-11-14)
parents 07ae722ec64e
children c514cc4854d8
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"
pascal@2416 9 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXmu"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
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