diff options
author | Mikko Värri <vmj@linuxbox.fi> | 2012-01-11 08:32:52 -0600 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2012-01-11 08:32:52 -0600 |
commit | 30f33cdee03fdc6dc7f6d975dbf0550921bcaa02 (patch) | |
tree | 98dc16c0c5fe8e12d4dd6df03a6ef22f6e0db3cf /python/subvertpy/subvertpy.SlackBuild | |
parent | 30afff646caad9ecc2db9ae3afcbedd9a02ecf07 (diff) | |
download | slackbuilds-30f33cdee03fdc6dc7f6d975dbf0550921bcaa02.tar.gz |
python/subvertpy: Updated for version 0.8.9.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'python/subvertpy/subvertpy.SlackBuild')
-rw-r--r-- | python/subvertpy/subvertpy.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/subvertpy/subvertpy.SlackBuild b/python/subvertpy/subvertpy.SlackBuild index b155c4ae90..1b3761794d 100644 --- a/python/subvertpy/subvertpy.SlackBuild +++ b/python/subvertpy/subvertpy.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for subvertpy -# Copyright 2011 Mikko Värri, Finland +# Copyright 2012 Mikko Värri, Finland # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=subvertpy -VERSION=${VERSION:-0.8.5} +VERSION=${VERSION:-0.8.9} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -57,7 +57,7 @@ find . \ python setup.py install --root=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +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 |