diff options
author | Aleksandar Samardzic <asamardzic@gmail.com> | 2010-05-12 17:38:43 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:38:43 +0200 |
commit | 9dccbbf5610dd0a3728f9ec733767890845a5b69 (patch) | |
tree | e27f5800cb94892cdde193c4c27c3a51d11b08ce /development/numpy/numpy.SlackBuild | |
parent | 0cae248ac1bec7612df11975a651d6c5cdd83d80 (diff) | |
download | slackbuilds-9dccbbf5610dd0a3728f9ec733767890845a5b69.tar.gz |
development/numpy: Updated for version 1.3.0
Diffstat (limited to 'development/numpy/numpy.SlackBuild')
-rw-r--r-- | development/numpy/numpy.SlackBuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/development/numpy/numpy.SlackBuild b/development/numpy/numpy.SlackBuild index d216eaed91..f12d8f1205 100644 --- a/development/numpy/numpy.SlackBuild +++ b/development/numpy/numpy.SlackBuild @@ -5,7 +5,7 @@ # Written by Aleksandar Samardzic <asamardzic@gmail.com> PRGNAM=numpy -VERSION=${VERSION:-1.2.0} +VERSION=${VERSION:-1.3.0} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -34,8 +34,10 @@ python setup.py build python setup.py install --root $PKG ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |