wok-6.x annotate python-pygame/receipt @ rev 10832
python-pygame: we want font, image, mixer support for childsplay
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Jun 07 21:56:16 2011 +0200 (2011-06-07) |
parents | 0d04c8e17418 |
children | ad0ab4909652 |
rev | line source |
---|---|
claudinei@3386 | 1 # SliTaz package receipt. |
claudinei@3386 | 2 |
claudinei@3386 | 3 PACKAGE="python-pygame" |
claudinei@3386 | 4 SOURCE="pygame" |
slaxemulator@6901 | 5 VERSION="1.9.1release" |
claudinei@3386 | 6 CATEGORY="development" |
claudinei@3386 | 7 SHORT_DESC="Python game development." |
claudinei@3386 | 8 MAINTAINER="claudinei@slitaz.org" |
claudinei@3386 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
claudinei@3386 | 10 WEB_SITE="http://www.pygame.org" |
claudinei@3386 | 11 WGET_URL="$WEB_SITE/ftp/$TARBALL" |
pankso@10832 | 12 |
pascal@5005 | 13 DEPENDS="python libsdl libsdl-image libsdl-mixer libsdl-ttf python-numpy \ |
pascal@5005 | 14 libsmpeg gcc-lib-base" |
pankso@10832 | 15 BUILD_DEPENDS="python-dev libsmpeg-dev libsdl-dev libsdl-image-dev \ |
pankso@10832 | 16 libsdl-mixer-dev libsdl-ttf-dev" |
claudinei@3386 | 17 |
claudinei@3386 | 18 # Rules to configure and make the package. |
claudinei@3386 | 19 compile_rules() |
claudinei@3386 | 20 { |
claudinei@3386 | 21 cd $src |
slaxemulator@9467 | 22 patch -Np0 -i $stuff/config.patch |
slaxemulator@6901 | 23 python config.py -auto && |
slaxemulator@9467 | 24 python setup.py install --root=$DESTDIR |
claudinei@3386 | 25 } |
claudinei@3386 | 26 |
claudinei@3386 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
claudinei@3386 | 28 genpkg_rules() |
claudinei@3386 | 29 { |
pascal@6594 | 30 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/') |
claudinei@3386 | 31 mkdir -p $fs/usr |
claudinei@3386 | 32 cp -a $_pkg/usr/lib $fs/usr |
pascal@6592 | 33 chmod 644 $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/freesansbold.ttf |
claudinei@3386 | 34 cp -a $_pkg/usr/include $fs/usr |
claudinei@3386 | 35 } |
claudinei@3386 | 36 |
claudinei@3404 | 37 # Remove old package. |
claudinei@3404 | 38 post_install() |
claudinei@3404 | 39 { |
claudinei@3404 | 40 rm -rf $1/var/lib/tazpkg/installed/pygame |
claudinei@3404 | 41 } |