diff options
author | John Tyree <johntyree@gmail.com> | 2010-12-13 22:01:00 -0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-12-17 07:56:46 -0600 |
commit | db8c99c388c580613ec0e6c06ba498a5b8e5fe3e (patch) | |
tree | f767c2e1a1272dd517b6302832774a9ad0ac8c10 /office/traduisons/traduisons.SlackBuild | |
parent | 4c2b9e6819ab17e8752feab0be466b51148d3a53 (diff) | |
download | slackbuilds-db8c99c388c580613ec0e6c06ba498a5b8e5fe3e.tar.gz |
office/traduisons: Added (python front-end to Google Translate)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'office/traduisons/traduisons.SlackBuild')
-rw-r--r-- | office/traduisons/traduisons.SlackBuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/office/traduisons/traduisons.SlackBuild b/office/traduisons/traduisons.SlackBuild new file mode 100644 index 0000000000..e7986e8ea9 --- /dev/null +++ b/office/traduisons/traduisons.SlackBuild @@ -0,0 +1,52 @@ +#!/bin/sh + +# Slackware build script for traduisons + +# Written by John Tyree johntyree@gmail.com + +PRGNAM=traduisons +VERSION=${VERSION:-0.4.3} +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-$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 \ + CHANGELOG LICENSE README 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} |