diff options
author | Markus Reichelt <slackbuilds@mareichelt.de> | 2012-06-25 21:44:45 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-06-25 21:44:45 -0400 |
commit | 73994d4aef9dedcfbdb81832e041faf02dcabeef (patch) | |
tree | f20bf68fb347b4e968e7f7fa88376f02bb6fb609 /python/pyasn1/pyasn1.SlackBuild | |
parent | 589ba7f64bed5aa18cdc25a3cf4a3d49b0a024d0 (diff) |
python/pyasn1: Updated for version 0.1.3.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'python/pyasn1/pyasn1.SlackBuild')
-rw-r--r-- | python/pyasn1/pyasn1.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/python/pyasn1/pyasn1.SlackBuild b/python/pyasn1/pyasn1.SlackBuild index 8a55495b4bbed..7994d2aa3cfe1 100644 --- a/python/pyasn1/pyasn1.SlackBuild +++ b/python/pyasn1/pyasn1.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for pyasn1. -# Copyright 2011 Markus Reichelt, Aachen, DE +# Copyright 2011-2012 Markus Reichelt, Aachen, DE # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,11 +22,10 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# markus reichelt, slackbuilds@mareichelt.de, 0xCCEEF115 -# 2011 September 04 - initial release +# Markus Reichelt, slackbuilds@mareichelt.de, 0xCCEEF115 PRGNAM=pyasn1 -VERSION=${VERSION:-0.0.13} +VERSION=${VERSION:-0.1.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -74,7 +73,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 |