wok annotate xorg-xkill/receipt @ rev 15579

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents 02bbaa9d12ba
children 87646c0eaba7
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@15579 9 LICENSE="MIT"
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
pascal@15579 14 DEPENDS="xorg-libXmu"
pascal@15579 15 BUILD_DEPENDS="xorg-libXmu-dev"
pascal@15579 16
mallory@1266 17 # Rules to configure and make the package.
mallory@1266 18 compile_rules()
mallory@1266 19 {
mallory@1266 20 cd $src
mallory@1266 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2086 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@2086 23 make &&
pascal@15579 24 make DESTDIR=$DESTDIR install
mallory@1266 25 }
mallory@1266 26
mallory@1266 27 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@1266 28 genpkg_rules()
mallory@1266 29 {
mallory@1266 30 mkdir -p $fs/usr
pascal@15579 31 cp -a $install/usr/bin $fs/usr
mallory@1266 32 }
mallory@1266 33