diff options
author | Joey Trungale <joey@trungale.net> | 2010-07-08 03:25:45 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-07-08 03:25:45 -0500 |
commit | d2b6b528430f2feb9fb87d514dc46289ae3a4961 (patch) | |
tree | 77a7aa2ece7be4979f0723777b9e320cdbe05604 /libraries/pycontrol/pycontrol.SlackBuild | |
parent | 55dfd427fe2e932ba9c7cb9ca9d99a73e496d762 (diff) | |
download | slackbuilds-d2b6b528430f2feb9fb87d514dc46289ae3a4961.tar.gz |
libraries/pycontrol: Added (Python library for the F5 iControl API)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/pycontrol/pycontrol.SlackBuild')
-rw-r--r-- | libraries/pycontrol/pycontrol.SlackBuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/libraries/pycontrol/pycontrol.SlackBuild b/libraries/pycontrol/pycontrol.SlackBuild new file mode 100644 index 0000000000..5c5e2dc19c --- /dev/null +++ b/libraries/pycontrol/pycontrol.SlackBuild @@ -0,0 +1,58 @@ +#!/bin/sh + +# Slackware build script for pycontrol +# Written by Joey Trungale <joey@trungale.net> + +PRGNAM=pycontrol +VERSION=${VERSION:-2.0} +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 trunk +tar xvf $CWD/$PRGNAM.tar.gz + +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 {} \; + +# Remove SVN directories +rm -rf trunk/pycontrol/.svn +rm -rf trunk/pycontrol/samples/.svn +rm -rf trunk/.svn + +cd trunk +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 -ar $PRGNAM/README $PRGNAM/samples $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} |