# HG changeset patch # User Mallory MOLLO # Date 1218837462 -7200 # Node ID 185ddac9f1f9dab5fa17f0622c671b31bca01efa # Parent c971252dc557fa560297d22bea48e6814a56c05e Add : xkill diff -r c971252dc557 -r 185ddac9f1f9 xorg-xkill/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xkill/receipt Fri Aug 15 23:57:42 2008 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xkill" +SOURCE="xkill" +VERSION="1.0.1" +CATEGORY="x-window" +SHORT_DESC="X application killer" +MAINTAINER="mallory@sweetpeople.org" +DEPENDS="" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="x.org" +WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} +