diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2013-11-06 06:19:35 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-05 20:03:40 -0600 |
commit | 36b02a7cc0c45effb5c43743833ac12002220e23 (patch) | |
tree | 47c41e52029328d4b58e59336c3a8ace43ad5199 /academic/sympy/sympy.SlackBuild | |
parent | 9bbba9e5272d3e90a489140a9a4db4a572387069 (diff) | |
download | slackbuilds-36b02a7cc0c45effb5c43743833ac12002220e23.tar.gz |
academic/sympy: Updated for version 0.7.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'academic/sympy/sympy.SlackBuild')
-rw-r--r-- | academic/sympy/sympy.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/academic/sympy/sympy.SlackBuild b/academic/sympy/sympy.SlackBuild index b8895004b2..264fcd87ac 100644 --- a/academic/sympy/sympy.SlackBuild +++ b/academic/sympy/sympy.SlackBuild @@ -7,8 +7,8 @@ # Updated for 0.7.1 by Serban Udrea <S.Udrea@gsi.de> PRGNAM=sympy -VERSION=${VERSION:-0.7.1} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.7.3} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -33,11 +33,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find . \ +find -L . \ \( -perm 777 -o -perm 775 -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 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 @@ -48,7 +48,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ - AUTHORS LICENSE README TODO \ + AUTHORS LICENSE TODO \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |