diff options
author | Antonio Hernández Blas <hba.nihilismus@gmail.com> | 2012-02-19 20:50:48 -0200 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2012-02-19 20:50:48 -0200 |
commit | 0089557cb8b6c4024669b3ba3e037200a46bbec1 (patch) | |
tree | 887d65ac7fa567aebf348f3d6721779a08844d90 /network/hiawatha/hiawatha.SlackBuild | |
parent | 8b8d6e337c37ccbfb89ea1f2a01ba05fc27bcdbc (diff) | |
download | slackbuilds-0089557cb8b6c4024669b3ba3e037200a46bbec1.tar.gz |
network/hiawatha: Updated for version 7.8.2.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/hiawatha/hiawatha.SlackBuild')
-rw-r--r-- | network/hiawatha/hiawatha.SlackBuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/network/hiawatha/hiawatha.SlackBuild b/network/hiawatha/hiawatha.SlackBuild index b386ded742..ddb7bfec9b 100644 --- a/network/hiawatha/hiawatha.SlackBuild +++ b/network/hiawatha/hiawatha.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for hiawatha -# Copyright (c) 2009-2011, Antonio Hernández Blas <hba.nihilismus@gmail.com> +# Copyright (c) 2009-2012, Antonio Hernández Blas <hba.nihilismus@gmail.com> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -22,7 +22,7 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=hiawatha -VERSION=${VERSION:-7.7} +VERSION=${VERSION:-7.8.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -97,12 +97,8 @@ install -m 0644 $CWD/rc.php-fcgi $PKG/etc/rc.d/rc.php-fcgi 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 - ( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - ) -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 AUTHORS ChangeLog COPYING INSTALL $PKG/usr/doc/$PRGNAM-$VERSION |