wok diff libsdl/receipt @ rev 3424

Ren: libSDL -> libsdl (result = rebuild all SDL games to remove libiconv dep)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jun 13 12:10:53 2009 +0200 (2009-06-13)
parents
children e8024c01fc47
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libsdl/receipt	Sat Jun 13 12:10:53 2009 +0200
     1.3 @@ -0,0 +1,38 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libsdl"
     1.7 +VERSION="1.2.13"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Simple DirectMedia Layer (used by Qemu)."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="xorg"
    1.12 +BUILD_DEPENDS="xorg-dev xorg-xextproto"
    1.13 +SOURCE="SDL"
    1.14 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.15 +WEB_SITE="http://www.libsdl.org/"
    1.16 +WGET_URL="http://www.libsdl.org/release/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure \
    1.23 +		--prefix=/usr \
    1.24 +		--infodir=/usr/share/info \
    1.25 +		--mandir=/usr/share/man \
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$PWD/_pkg install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/lib
    1.35 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.36 +}
    1.37 +
    1.38 +post_install()
    1.39 +{
    1.40 +	[ -d "/var/lib/tazpkg/installed/libSDL" ] && tazpkg remove libSDL
    1.41 +}