diff options
author | Markus Reichelt <slackbuilds@mareichelt.de> | 2014-10-03 08:45:45 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-10-03 10:17:06 +0700 |
commit | 287f2036a869729743351b3e295245e5823cb38c (patch) | |
tree | 9a6cb009aacac89426b147d912a3190413957ba3 /python/stem/stem.SlackBuild | |
parent | 7c88bab532a5881ba979da87b3b31aed3eb974c7 (diff) | |
download | slackbuilds-287f2036a869729743351b3e295245e5823cb38c.tar.gz slackbuilds-287f2036a869729743351b3e295245e5823cb38c.tar.xz |
python/stem: Updated for version 1.2.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/stem/stem.SlackBuild')
-rw-r--r-- | python/stem/stem.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/stem/stem.SlackBuild b/python/stem/stem.SlackBuild index 20fa1ffda33..20f3e549555 100644 --- a/python/stem/stem.SlackBuild +++ b/python/stem/stem.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for stem -# Copyright 2013 Markus Reichelt, Stolberg (Rhld.), DE +# Copyright 2013-2014 Markus Reichelt, Stolberg (Rhld.), DE # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ # Markus Reichelt <slackbuilds@mareichelt.de>, 0xCCEEF115 PRGNAM=stem -VERSION=${VERSION:-1.1.1} +VERSION=${VERSION:-1.2.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -77,7 +77,7 @@ cd $TMP/$PRGNAM-$VERSION find $PKG -print0 | xargs -0 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 $PKG/usr/man1 +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/usr/man/man1 cp -a docs/ LICENSE $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild @@ -87,8 +87,8 @@ if [ "$DOC" = "yes" ]; then make man cp -a _build/html $PKG/usr/doc/$PRGNAM-$VERSION rm $PKG/usr/doc/$PRGNAM-$VERSION/html/{.buildinfo,objects.inv} - cp -a _build/man $PKG/usr/man1 - find $PKG/usr/man1 -type f -exec gzip -9 {} \; + cp -a _build/man $PKG/usr/man/man1 + find $PKG/usr/man/man1 -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man1 -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done rm -rf $PKG/usr/doc/$PRGNAM-$VERSION/docs/* rmdir $PKG/usr/doc/$PRGNAM-$VERSION/docs |