wok annotate libSDL/receipt @ rev 1616

Add perl-getopt-long
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 19 21:40:44 2008 +0000 (2008-10-19)
parents ccf126429a43
children 2ddc861c6696
rev   line source
pankso@30 1 # SliTaz package receipt.
pankso@30 2
pankso@30 3 PACKAGE="libSDL"
pascal@437 4 VERSION="1.2.13"
pankso@209 5 CATEGORY="x-window"
pankso@30 6 SHORT_DESC="Simple DirectMedia Layer (used by Qemu)."
pankso@30 7 MAINTAINER="pankso@slitaz.org"
pankso@30 8 DEPENDS="xorg"
pankso@30 9 SOURCE="SDL"
pankso@30 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pankso@30 11 WEB_SITE="http://www.libsdl.org/"
pankso@30 12 WGET_URL="http://www.libsdl.org/release/$TARBALL"
pankso@30 13
pankso@30 14 # Rules to configure and make the package.
pankso@30 15 compile_rules()
pankso@30 16 {
pankso@30 17 cd $src
pankso@58 18 ./configure \
pankso@58 19 --prefix=/usr \
pankso@58 20 --infodir=/usr/share/info \
pankso@58 21 --mandir=/usr/share/man \
pankso@58 22 $CONFIGURE_ARGS
pankso@30 23 make
pankso@30 24 make DESTDIR=$PWD/_pkg install
pankso@30 25 }
pankso@30 26
pankso@30 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@30 28 genpkg_rules()
pankso@30 29 {
pascal@437 30 mkdir -p $fs/usr/lib $fs/usr/share
pankso@30 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@437 32 cp -a $_pkg/usr/bin $fs/usr
pascal@437 33 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@30 34 }