diff options
Diffstat (limited to 'development/gob2/gob2.SlackBuild')
-rw-r--r-- | development/gob2/gob2.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/development/gob2/gob2.SlackBuild b/development/gob2/gob2.SlackBuild index a143e620f6..e6367b4d41 100644 --- a/development/gob2/gob2.SlackBuild +++ b/development/gob2/gob2.SlackBuild @@ -2,7 +2,7 @@ # # Slackware build script for GOB-2 # -# Copyright 2009 Erik W. Hanson, Minneapolis, MN, USA +# Copyright 2009-2010 Erik W. Hanson, Minneapolis, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=gob2 -VERSION=2.0.16 +VERSION=2.0.17 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -67,10 +67,8 @@ CFLAGS="$SLKCFLAGS" \ make make install-strip DESTDIR=$PKG -( cd $PKG/usr/man || exit 1 - find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) +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 COPYING COPYING.generated-code INSTALL NEWS README TODO \ |