diff options
Diffstat (limited to 'system/lzip/lzip.SlackBuild')
-rw-r--r-- | system/lzip/lzip.SlackBuild | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/system/lzip/lzip.SlackBuild b/system/lzip/lzip.SlackBuild index 0709024b5b94..693d1c98ec80 100644 --- a/system/lzip/lzip.SlackBuild +++ b/system/lzip/lzip.SlackBuild @@ -2,11 +2,9 @@ # Slackware build script for lzip -# Copyright 2008 Barry J. Grundy <http://www.linuxleo.com> +# Copyright 2008 Barry J. Grundy <bgrundy(at)linuxleo.com> # All rights reserved. # -# Revision Date: 16 March 2010 -# # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: # @@ -24,19 +22,19 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# Revision Date: 07 July 2010 + PRGNAM=lzip -VERSION=1.9 +VERSION=1.10 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRC_VERSION=$(echo $VERSION | tr _ -) -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -92,10 +90,8 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( 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 -) +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 rm -f $PKG/usr/info/dir gzip -9 $PKG/usr/info/* |