libraries/afflib: Updated for version 3.5.12.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Barry J. Grundy 2010-07-08 09:41:22 -05:00 committed by Robby Workman
parent 1d0a685f44
commit e83b40b0eb
2 changed files with 10 additions and 12 deletions

View file

@ -4,7 +4,7 @@
# Copyright 2008 Heinz Wiesinger <pprkut@liwjatan.at> # Copyright 2008 Heinz Wiesinger <pprkut@liwjatan.at>
# All rights reserved. # All rights reserved.
# #
# Redistribution and use of this script, with or without modification, is # Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met: # permitted provided that the following conditions are met:
# #
@ -22,17 +22,17 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Updated: v3.5.12 July 2010 Barry J. Grundy <bgrundy(at)linuxleo.com>
PRGNAM=afflib PRGNAM=afflib
VERSION=3.5.7 VERSION=3.5.12
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then if [ -z "$ARCH" ]; then
case "$( uname -m )" in case "$( uname -m )" in
i?86) ARCH=i486 ;; i?86) ARCH=i486 ;;
arm*) ARCH=arm ;; arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;; *) ARCH=$( uname -m ) ;;
esac esac
fi fi
@ -84,10 +84,8 @@ CXXFLAGS="$SLKCFLAGS" \
make make
make install-strip DESTDIR=$PKG make install-strip DESTDIR=$PKG
( cd $PKG/usr/man find $PKG/usr/man -type f -exec gzip -9 {} \;
find . -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
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -ra AUTHORS BUGLIST.txt ChangeLog COPYING INSTALL NEWS README* doc/ \ cp -ra AUTHORS BUGLIST.txt ChangeLog COPYING INSTALL NEWS README* doc/ \

View file

@ -1,10 +1,10 @@
PRGNAM="afflib" PRGNAM="afflib"
VERSION="3.5.7" VERSION="3.5.12"
HOMEPAGE="http://www.afflib.org/" HOMEPAGE="http://www.afflib.org/"
DOWNLOAD="http://www.afflib.org/downloads/afflib-3.5.7.tar.gz" DOWNLOAD="http://www.afflib.org/downloads/afflib-3.5.12.tar.gz"
MD5SUM="efd1dacf1acf1ba450104635be93316c" MD5SUM="6eb21ae845c69691abe2e800b411b174"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
MAINTAINER="Barry J. Grundy" MAINTAINER="Barry J. Grundy"
EMAIL="bgrundy<at>linuxleo.com" EMAIL="bgrundy<at>linuxleo.com"
APPROVED="Erik Hanson" APPROVED="rworkman"