wok annotate python-pygame/receipt @ rev 15280

cinepaint: remove a wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 26 13:12:43 2013 +0000 (2013-09-26)
parents ad0ab4909652
children fd4f1e692109
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"
pankso@10833 7 SHORT_DESC="Python game library."
claudinei@3386 8 MAINTAINER="claudinei@slitaz.org"
claudinei@3386 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pankso@10833 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 \
pascal@14870 16 libsdl-mixer-dev libsdl-ttf-dev libv4l-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
pascal@14870 23 sed -i "s|linux/videodev.h|libv4l1-videodev.h|" src/camera.h
slaxemulator@6901 24 python config.py -auto &&
slaxemulator@9467 25 python setup.py install --root=$DESTDIR
claudinei@3386 26 }
claudinei@3386 27
claudinei@3386 28 # Rules to gen a SliTaz package suitable for Tazpkg.
claudinei@3386 29 genpkg_rules()
claudinei@3386 30 {
pascal@6594 31 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
claudinei@3386 32 mkdir -p $fs/usr
pankso@10833 33 cp -a $install/usr/lib $fs/usr
pascal@6592 34 chmod 644 $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/freesansbold.ttf
pankso@10833 35 # examples and tests in python-pygame-dev
pankso@10833 36 rm -rf $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/examples
pankso@10833 37 rm -rf $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/tests
claudinei@3386 38 }
claudinei@3386 39
claudinei@3404 40 # Remove old package.
claudinei@3404 41 post_install()
claudinei@3404 42 {
pankso@10833 43 rm -rf $1/var/lib/tazpkg/installed/pygame/examples
claudinei@3404 44 }