wok annotate python-pygame/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 1067bb7f1e24
children d7522d21c4d3
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"
pascal@15378 9 LICENSE="LGPL"
claudinei@3386 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pankso@10833 11 WEB_SITE="http://www.pygame.org/"
claudinei@3386 12 WGET_URL="$WEB_SITE/ftp/$TARBALL"
pankso@10832 13
pascal@5005 14 DEPENDS="python libsdl libsdl-image libsdl-mixer libsdl-ttf python-numpy \
pascal@5005 15 libsmpeg gcc-lib-base"
pankso@10832 16 BUILD_DEPENDS="python-dev libsmpeg-dev libsdl-dev libsdl-image-dev \
pascal@14870 17 libsdl-mixer-dev libsdl-ttf-dev libv4l-dev"
claudinei@3386 18
claudinei@3386 19 # Rules to configure and make the package.
claudinei@3386 20 compile_rules()
claudinei@3386 21 {
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 {
pascal@18730 43 [ ! -d "$1/var/lib/tazpkg/installed/pygame/examples" ] ||
pascal@18730 44 rm -rf "$1/var/lib/tazpkg/installed/pygame/examples"
claudinei@3404 45 }