diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-27 08:31:45 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-27 08:31:45 +0700 |
commit | 69418deb4acf50ea249537849a275ff1e414e532 (patch) | |
tree | 9291795155ff75ff2e28e56df8baa3ab065a59a7 | |
parent | 704246a042ff1b3c92d368b258faf4f7874aa447 (diff) |
libraries/tcllib: Updated for version 1.18.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | libraries/tcllib/tcllib.SlackBuild | 13 | ||||
-rw-r--r-- | libraries/tcllib/tcllib.info | 6 |
2 files changed, 10 insertions, 9 deletions
diff --git a/libraries/tcllib/tcllib.SlackBuild b/libraries/tcllib/tcllib.SlackBuild index 628dab8923f7..d0bb4db166c9 100644 --- a/libraries/tcllib/tcllib.SlackBuild +++ b/libraries/tcllib/tcllib.SlackBuild @@ -5,7 +5,7 @@ # Written by Paul Wisehart wise@lupulin.net PRGNAM=tcllib -VERSION=${VERSION:-1.17} +VERSION=${VERSION:-1.18} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,10 +46,10 @@ tar xvf $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" \ @@ -64,10 +64,11 @@ 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 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a ChangeLog DESCRIPTION.txt README INSTALL.txt \ diff --git a/libraries/tcllib/tcllib.info b/libraries/tcllib/tcllib.info index 3ee84759ac7c..34c0581292b0 100644 --- a/libraries/tcllib/tcllib.info +++ b/libraries/tcllib/tcllib.info @@ -1,8 +1,8 @@ PRGNAM="tcllib" -VERSION="1.17" +VERSION="1.18" HOMEPAGE="http://www.tcl.tk/software/tcllib/" -DOWNLOAD="http://sourceforge.net/projects/tcllib/files/tcllib/1.17/tcllib-1.17.tar.gz" -MD5SUM="4c75fbfbb518f8990fcd4686b976bd70" +DOWNLOAD="http://sourceforge.net/projects/tcllib/files/tcllib/1.18/tcllib-1.18.tar.gz" +MD5SUM="219361e6bdf9d9c0d79edbd1ab3e8080" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |