wok annotate xorg-xkill/receipt @ rev 7224

atftp: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 11 18:40:04 2010 +0100 (2010-11-11)
parents 170168df8ad1
children ed6a98ff2fc6
rev   line source
mallory@1266 1 # SliTaz package receipt.
mallory@1266 2
mallory@1266 3 PACKAGE="xorg-xkill"
mallory@1266 4 SOURCE="xkill"
gokhlayeh@6993 5 VERSION="1.0.2"
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