diff options
Diffstat (limited to 'multimedia/gpac/gpac.SlackBuild')
-rw-r--r-- | multimedia/gpac/gpac.SlackBuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/multimedia/gpac/gpac.SlackBuild b/multimedia/gpac/gpac.SlackBuild index 6f690fc3a1..3581f5e831 100644 --- a/multimedia/gpac/gpac.SlackBuild +++ b/multimedia/gpac/gpac.SlackBuild @@ -1,9 +1,10 @@ #!/bin/sh # Slackware Package Build Script for gpac -# Home Page http://gpac.wp.institut-telecom.fr/ +# Home Page: https://gpac.wp.mines-telecom.fr/ -# Copyright (c) 2007-2014, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net) +# Copyright (c) 2007-2015, Nishant Limbachia, Hoffman Estates, IL, USA +# (nishant _AT_ mnspace _DOT_ net) # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +26,7 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM="gpac" -VERSION=${VERSION:-svn_r5564} +VERSION=${VERSION:-git20151020} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -73,10 +74,10 @@ 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 {} \; # configure doesn't have --libdir option. sed -i "s/^libdir=\".*\"$/libdir=\"lib$LIBDIRSUFFIX\"/" configure @@ -106,9 +107,9 @@ 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 BUGS COPYING Changelog INSTALLME README TODO doc/configuration.html \ + AUTHORS BUGS COPYING Changelog INSTALLME README.md TODO doc/configuration.html \ $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/SVN-VERSION > $PKG/usr/doc/$PRGNAM-$VERSION/SVN-VERSION +cat $CWD/GIT-VERSION > $PKG/usr/doc/$PRGNAM-$VERSION/GIT-VERSION mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |