wok view python-pygame/receipt @ rev 15213

Add nbd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 13 12:21:17 2013 +0000 (2013-09-13)
parents ad0ab4909652
children fd4f1e692109
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 library."
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 libv4l-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 patch -Np0 -i $stuff/config.patch
23 sed -i "s|linux/videodev.h|libv4l1-videodev.h|" src/camera.h
24 python config.py -auto &&
25 python setup.py install --root=$DESTDIR
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
32 mkdir -p $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 chmod 644 $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/freesansbold.ttf
35 # examples and tests in python-pygame-dev
36 rm -rf $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/examples
37 rm -rf $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/tests
38 }
40 # Remove old package.
41 post_install()
42 {
43 rm -rf $1/var/lib/tazpkg/installed/pygame/examples
44 }