wok annotate python-pygame/receipt @ rev 15409

get-LibreOffice: fix gtk style and launch from menu shortcuts
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:16:39 2013 +0100 (2013-11-03)
parents e8f790529aae
children 7390f8de9846
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 {
claudinei@3386 22 cd $src
slaxemulator@9467 23 patch -Np0 -i $stuff/config.patch
pascal@14870 24 sed -i "s|linux/videodev.h|libv4l1-videodev.h|" src/camera.h
slaxemulator@6901 25 python config.py -auto &&
slaxemulator@9467 26 python setup.py install --root=$DESTDIR
claudinei@3386 27 }
claudinei@3386 28
claudinei@3386 29 # Rules to gen a SliTaz package suitable for Tazpkg.
claudinei@3386 30 genpkg_rules()
claudinei@3386 31 {
pascal@6594 32 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
claudinei@3386 33 mkdir -p $fs/usr
pankso@10833 34 cp -a $install/usr/lib $fs/usr
pascal@6592 35 chmod 644 $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/freesansbold.ttf
pankso@10833 36 # examples and tests in python-pygame-dev
pankso@10833 37 rm -rf $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/examples
pankso@10833 38 rm -rf $fs/usr/lib/$PYTHON_LIB/site-packages/pygame/tests
claudinei@3386 39 }
claudinei@3386 40
claudinei@3404 41 # Remove old package.
claudinei@3404 42 post_install()
claudinei@3404 43 {
pankso@10833 44 rm -rf $1/var/lib/tazpkg/installed/pygame/examples
claudinei@3404 45 }