diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-16 01:13:49 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-20 12:33:01 -0500 |
commit | 7a1b4848a3d34a263544fadf08178c91c12fbad0 (patch) | |
tree | 8987d0fc908e371dfa87445425f59c7514075b37 /python/pygame/pygame.SlackBuild | |
parent | 987d45e99a299c3b24418b2976e8ec9d5f3bf404 (diff) | |
download | slackbuilds-7a1b4848a3d34a263544fadf08178c91c12fbad0.tar.gz |
python/*: Moved a lot of Python stuff here
The criteria for whether something "belongs" in Development or
Libraries or Python or ... is admittedly arbitrary. As a general
rule, if it could be either Libraries or Python, it's Python.
Otherwise, pick one and we'll go from there...
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'python/pygame/pygame.SlackBuild')
-rw-r--r-- | python/pygame/pygame.SlackBuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/python/pygame/pygame.SlackBuild b/python/pygame/pygame.SlackBuild new file mode 100644 index 0000000000..e0242ddbe6 --- /dev/null +++ b/python/pygame/pygame.SlackBuild @@ -0,0 +1,53 @@ +#!/bin/sh + +## Written by hollywoodb (hollywoodb@fastmail.fm) +# Modified by the SlackBuilds.org project + +NAME=pygame +VERSION=1.7.1 +BUILD=${BUILD:-3} +TAG=${TAG:-_SBo} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$NAME +OUTPUT=${OUTPUT:-/tmp} + +SRCVERSION=${VERSION}release + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $NAME-$SRCVERSION +tar xvf $CWD/$NAME-$SRCVERSION.tar.?z* || exit 1 +cd $NAME-$SRCVERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# Python programs use the CFLAGS specified used by python itself +python -u config.py || exit 1 +python setup.py install --root=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$NAME-$VERSION +cp -a PKG-INFO WHATSNEW install.html readme.txt docs/* examples \ + $PKG/usr/doc/$NAME-$VERSION +cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n -p $OUTPUT/$NAME-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |