libraries/tcllib: Updated for version 1.18.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2016-05-27 08:31:45 +07:00
parent 704246a042
commit 69418deb4a
2 changed files with 10 additions and 9 deletions

View file

@ -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 \

View file

@ -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=""