diff options
-rw-r--r-- | system/lzip/lzip.SlackBuild | 16 | ||||
-rw-r--r-- | system/lzip/lzip.info | 8 |
2 files changed, 10 insertions, 14 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/* diff --git a/system/lzip/lzip.info b/system/lzip/lzip.info index 65edee85b2..c74e467147 100644 --- a/system/lzip/lzip.info +++ b/system/lzip/lzip.info @@ -1,10 +1,10 @@ PRGNAM="lzip" -VERSION="1.9" +VERSION="1.10" HOMEPAGE="http://www.nongnu.org/lzip/lzip.html" -DOWNLOAD="http://savannah.inetbridge.net/lzip/lzip-1.9.tar.gz" -MD5SUM="9e1d7f4db5b953e9f75b8500ebe0d4c0" +DOWNLOAD="http://download.savannah.gnu.org/releases-noredirect/lzip/lzip-1.10.tar.gz" +MD5SUM="84879f20450a69a94e125a67f4724d12" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Barry J. Grundy" EMAIL="bgrundy<at>linuxleo.com" -APPROVED="Erik Hanson" +APPROVED="rworkman" |