wok-stable view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pygame"
4 SOURCE="pygame"
5 VERSION="1.9.1release"
6 CATEGORY="development"
7 SHORT_DESC="Python game development."
8 MAINTAINER="claudinei@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.pygame.org"
11 WGET_URL="$WEB_SITE/ftp/$TARBALL"
13 DEPENDS="python libsdl libsdl-image libsdl-mixer libsdl-ttf python-numpy \
14 libsmpeg gcc-lib-base"
15 BUILD_DEPENDS="python-dev libsmpeg-dev libsdl-dev libsdl-image-dev \
16 libsdl-mixer-dev libsdl-ttf-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 patch -Np0 -i $stuff/config.patch
23 python config.py -auto &&
24 python setup.py install --root=$DESTDIR
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/lib $fs/usr
33 chmod 644 $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/freesansbold.ttf
34 cp -a $_pkg/usr/include $fs/usr
35 }
37 # Remove old package.
38 post_install()
39 {
40 rm -rf $1/var/lib/tazpkg/installed/pygame
41 }