wok view python-pygame/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 1067bb7f1e24
children d7522d21c4d3
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 LICENSE="LGPL"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.pygame.org/"
12 WGET_URL="$WEB_SITE/ftp/$TARBALL"
14 DEPENDS="python libsdl libsdl-image libsdl-mixer libsdl-ttf python-numpy \
15 libsmpeg gcc-lib-base"
16 BUILD_DEPENDS="python-dev libsmpeg-dev libsdl-dev libsdl-image-dev \
17 libsdl-mixer-dev libsdl-ttf-dev libv4l-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
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 [ ! -d "$1/var/lib/tazpkg/installed/pygame/examples" ] ||
44 rm -rf "$1/var/lib/tazpkg/installed/pygame/examples"
45 }