system/lzip: Updated for version 1.10.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Barry J. Grundy 2010-07-08 09:45:56 -05:00 committed by Robby Workman
parent ebfef56667
commit 600b818004
2 changed files with 10 additions and 14 deletions

View file

@ -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/*

View file

@ -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"