diff options
author | Barry J. Grundy <bgrundyatlinuxleo.com> | 2010-07-08 09:45:56 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-07-08 09:45:56 -0500 |
commit | 600b81800463052fc51377e3ac6940718abb6a34 (patch) | |
tree | 9bac64bb1ca5c8ea06467cde60cfcd41db7ed4c1 /system/lzip/lzip.SlackBuild | |
parent | ebfef56667f82720fbf8d71ebee13c1cf24c613e (diff) | |
download | slackbuilds-600b81800463052fc51377e3ac6940718abb6a34.tar.gz |
system/lzip: Updated for version 1.10.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
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 0709024b5b..693d1c98ec 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/* |