diff options
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 54a9090a3f..62bf3ced5e 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 {} \; |