diff options
Diffstat (limited to 'python/python-spidermonkey/python-spidermonkey.SlackBuild')
-rw-r--r-- | python/python-spidermonkey/python-spidermonkey.SlackBuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/python/python-spidermonkey/python-spidermonkey.SlackBuild b/python/python-spidermonkey/python-spidermonkey.SlackBuild deleted file mode 100644 index 9a8aea116c..0000000000 --- a/python/python-spidermonkey/python-spidermonkey.SlackBuild +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-spidermonkey - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=python-spidermonkey -VERSION=${VERSION:-20120725_7c9b4d6} -BUILD=${BUILD:-1} -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-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* -cd $PRGNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Get rid of ez_setup. -sed -i '/ez_setup/d' setup.py MANIFEST.in - -export CFLAGS="$(pkg-config --cflags mozjs185 mozilla-nspr)" -export LDFLAGS="$(pkg-config --libs mozjs185 mozilla-nspr)" -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/$PRGNAM-$VERSION -cp -a LICENSE $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/README.md > $PKG/usr/doc/$PRGNAM-$VERSION/README.md -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/* - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |