diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2012-12-09 11:01:00 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-12-11 16:21:59 -0500 |
commit | ba72f6af14a885c68540f12cefa957e45323037c (patch) | |
tree | df08788790226fc8653b0f5e140acbc934312589 /python/python-sh/python-sh.SlackBuild | |
parent | c16d8e402c136da3c753d4b17c66004fad7656ee (diff) | |
download | slackbuilds-ba72f6af14a885c68540f12cefa957e45323037c.tar.gz |
python/python-sh: Added (subprocess interface for Python)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'python/python-sh/python-sh.SlackBuild')
-rw-r--r-- | python/python-sh/python-sh.SlackBuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/python/python-sh/python-sh.SlackBuild b/python/python-sh/python-sh.SlackBuild new file mode 100644 index 0000000000..3914d3f3c4 --- /dev/null +++ b/python/python-sh/python-sh.SlackBuild @@ -0,0 +1,55 @@ +#!/bin/sh + +# Slackware build script for python-sh + +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=python-sh +VERSION=${VERSION:-1.07} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) 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/python-/}-$VERSION +tar xvf $CWD/${PRGNAM/python-/}-$VERSION.tar.gz +cd ${PRGNAM/python-/}-$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 {} \; + +python setup.py install --root=$PKG + +find $PKG -print0 | xargs -0 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 \ + AUTHORS.md LICENSE.txt PKG-INFO README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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} |