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/pyserial/pyserial.SlackBuild | |
parent | 987d45e99a299c3b24418b2976e8ec9d5f3bf404 (diff) |
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/pyserial/pyserial.SlackBuild')
-rw-r--r-- | python/pyserial/pyserial.SlackBuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/python/pyserial/pyserial.SlackBuild b/python/pyserial/pyserial.SlackBuild new file mode 100644 index 000000000000..40ddd60feab7 --- /dev/null +++ b/python/pyserial/pyserial.SlackBuild @@ -0,0 +1,55 @@ +#!/bin/sh + +# Slackware build script for pyserial + +# Written by Grissiom <chaos.proton@gmail.com> +# Updated by Dustin Schnee <schnee72{at}gmail{dot}com> + +PRGNAM=pyserial +VERSION=${VERSION:-2.5_rc2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +SRC_VERSION=$(printf $VERSION | tr _ -) + +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-$SRC_VERSION +tar xvf $CWD/$PRGNAM-$SRC_VERSION.tar.gz +cd $PRGNAM-$SRC_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 CHANGES.txt LICENSE.txt README.txt PKG-INFO \ + $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} |