diff options
author | Audrius Kažukauskas <audrius@neutrino.lt> | 2010-05-12 23:28:46 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:28:46 +0200 |
commit | 3b12e4271b0a2577c57a4e2bc93fc25c2e2f2fce (patch) | |
tree | c6006df3bbea7245a30f2f43b1bfdcb09941e08f /development/pip/pip.SlackBuild | |
parent | c1fb68324dbc9b165c5ccad83585a11430fd4fb6 (diff) | |
download | slackbuilds-3b12e4271b0a2577c57a4e2bc93fc25c2e2f2fce.tar.gz |
development/pip: Added to 12.2 repository
Diffstat (limited to 'development/pip/pip.SlackBuild')
-rw-r--r-- | development/pip/pip.SlackBuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/development/pip/pip.SlackBuild b/development/pip/pip.SlackBuild new file mode 100644 index 0000000000..8759e8ce05 --- /dev/null +++ b/development/pip/pip.SlackBuild @@ -0,0 +1,43 @@ +#!/bin/sh + +# Slackware build script for pip +# Written by Audrius Kažukauskas <audrius@neutrino.lt> + +PRGNAM=pip +VERSION=${VERSION:-0.4} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -eu + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +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 {} \; + +python setup.py install --root=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a docs/*.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/license.txt > $PKG/usr/doc/$PRGNAM-$VERSION/license.txt +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.tgz |