contrib/pygame/Pkgfile

30 lines
802 B
Plaintext
Raw Normal View History

2008-03-06 16:23:16 +01:00
# Description: Python bindings for SDL.
# URL: http://pygame.org/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2008-03-06 16:23:16 +01:00
# Packager: Han Boetes, han at mijncomputer dot nl
# Depends on: numeric sdl_image sdl_mixer sdl_ttf
2007-02-12 23:40:55 +01:00
name=pygame
2012-04-06 10:05:18 +02:00
version=1.9.1
2008-03-30 10:41:26 +02:00
release=1
2012-04-06 10:05:18 +02:00
source=(http://www.pygame.org/ftp/$name-${version}release.tar.gz
pygame-1.9.1-config.patch)
2007-02-12 23:40:55 +01:00
build() {
2012-04-06 10:05:18 +02:00
cd $name-${version}release
2008-03-30 10:41:26 +02:00
export CFLAGS="$CFLAGS -fno-strict-aliasing"
2012-04-06 10:05:18 +02:00
patch -p1 -i $SRC/pygame-1.9.1-config.patch
python config.py -auto
2007-02-12 23:40:55 +01:00
python setup.py install --prefix=/usr --root $PKG
2012-04-06 10:05:18 +02:00
2008-03-30 10:41:26 +02:00
chmod a-x $PKG/usr/lib/python*/site-packages/pygame/*.so
2008-07-29 17:22:54 +02:00
find $PKG -name '*.h' -exec chmod 0644 {} \;
find $PKG \( \
-name 'pygame.ico' -o \
-name 'pygame_icon.*' -o \
-name 'freesansbold.ttf' \) -exec chmod 0644 {} \;
2007-02-12 23:40:55 +01:00
}