diff options
author | Glenn Becker <glenn.becker@gmail.com> | 2016-07-25 04:36:56 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-07-25 04:36:56 +0700 |
commit | 6d44becc3416302019a25d82d4ca9a5c8493d472 (patch) | |
tree | 0673d3fabbb5be8fa9f12388620660f5f58f734b /academic/maxima/maxima.SlackBuild | |
parent | f051521704389b4ae90646668aafc7cc6cc970ef (diff) |
academic/maxima: Updated for version 5.38.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/maxima/maxima.SlackBuild')
-rw-r--r-- | academic/maxima/maxima.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/academic/maxima/maxima.SlackBuild b/academic/maxima/maxima.SlackBuild index 54a9090a3f4a2..62bf3ced5e218 100644 --- a/academic/maxima/maxima.SlackBuild +++ b/academic/maxima/maxima.SlackBuild @@ -26,10 +26,10 @@ # Modified by the SlackBuilds.org project # Modified by Ken Milmore 2009 # Modified by Glenn Becker to update to version 5.28.0 -# Glenn Becker -> update to version 5.37.2 +# Glenn Becker -> update to version 5.38.1 PRGNAM=maxima -VERSION=${VERSION:-5.37.2} +VERSION=${VERSION:-5.38.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -70,10 +70,10 @@ tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -88,7 +88,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$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 find $PKG/usr/man -type f -exec gzip -9 {} \; |