diff options
author | Rudson R. Alves <rudsonalves@yahoo.com.br> | 2015-04-17 08:19:56 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-04-17 08:19:56 +0700 |
commit | 752d83c6e5887022937ac5d5765973a09515f47f (patch) | |
tree | 65369063bcd18f077e9a8a6abc170e93872b4dee /development/pudb/pudb.SlackBuild | |
parent | 0bbd522affc92fd523b090642df9a0fe0098a8a9 (diff) | |
download | slackbuilds-752d83c6e5887022937ac5d5765973a09515f47f.tar.gz |
development/pudb: Updated for version 2015.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/pudb/pudb.SlackBuild')
-rw-r--r-- | development/pudb/pudb.SlackBuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/development/pudb/pudb.SlackBuild b/development/pudb/pudb.SlackBuild index faaf356ae2..74958b618a 100644 --- a/development/pudb/pudb.SlackBuild +++ b/development/pudb/pudb.SlackBuild @@ -5,7 +5,7 @@ # Written by Rudson R. Alves rudsonalves@yahoo.com.br PRGNAM=pudb -VERSION=${VERSION:-2013.3.2} +VERSION=${VERSION:-2015.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,10 +46,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; python setup.py install --root=$PKG @@ -57,9 +57,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - MANIFEST.in PKG-INFO README.rst \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a MANIFEST.in PKG-INFO README.rst $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |