diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-24 07:40:04 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-25 07:25:07 +0700 |
commit | 907af2a9fc5a850c924c03d8b783cc1acc93a529 (patch) | |
tree | 409622fc1349740f32bdd4d7300f50b9e3b00a05 | |
parent | 1ceb24dc5e7428bf3a98f2346935bac3efcaa79d (diff) | |
download | slackbuilds-907af2a9fc5a850c924c03d8b783cc1acc93a529.tar.gz |
system/aterm: Updated for version 1.0.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/aterm/aterm.SlackBuild | 12 | ||||
-rw-r--r-- | system/aterm/aterm.info | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/system/aterm/aterm.SlackBuild b/system/aterm/aterm.SlackBuild index 6759939edd..9e8240abca 100644 --- a/system/aterm/aterm.SlackBuild +++ b/system/aterm/aterm.SlackBuild @@ -25,7 +25,7 @@ # Modified by the SlackBuilds.org project PRGNAM=aterm -VERSION=1.0.0 +VERSION=${VERSION:-1.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -67,7 +67,7 @@ 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 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -75,6 +75,7 @@ CXXFLAGS="$SLKCFLAGS" \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ + --mandir=/usr/man \ --localstatedir=/var \ --enable-transparency \ --build=$ARCH-slackware-linux @@ -82,12 +83,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 -if [ -d $PKG/usr/man ]; then - gzip -9 $PKG/usr/man/man?/* -fi +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 INSTALL doc/* $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/system/aterm/aterm.info b/system/aterm/aterm.info index ef8c67426d..2245f79881 100644 --- a/system/aterm/aterm.info +++ b/system/aterm/aterm.info @@ -1,8 +1,8 @@ PRGNAM="aterm" -VERSION="1.0.0" +VERSION="1.0.1" HOMEPAGE="http://www.afterstep.org/aterm.php" -DOWNLOAD="http://downloads.sourceforge.net/aterm/aterm-1.0.0.tar.bz2" -MD5SUM="ceb64c62ae243a7fc3ddb0d6f9a19faa" +DOWNLOAD="http://downloads.sourceforge.net/aterm/aterm-1.0.1.tar.bz2" +MD5SUM="c2eede028e1011e0ec7035cf319c9b5a" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |