wok-current view xorg-xkill/receipt @ rev 3948
linux: add EFI partition & ppp_mppe (for pptp) support
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sat Aug 22 22:02:48 2009 +0200 (2009-08-22) | 
| parents | aa0dad286215 | 
| children | 07ae722ec64e | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="xorg-xkill"
     4 SOURCE="xkill"
     5 VERSION="1.0.1"
     6 CATEGORY="x-window"
     7 SHORT_DESC="X application killer"
     8 MAINTAINER="mallory@sweetpeople.org"
     9 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXmu"
    10 TARBALL="$SOURCE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.x.org/"
    12 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure --prefix=/usr --infodir=/usr/share/info \
    19 	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    20 	make &&
    21 	make DESTDIR=$PWD/_pkg install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs/usr
    28 	cp -a $_pkg/usr/bin $fs/usr
    29 	strip -s $fs/usr/bin/*
    30 }