perl/perl-Math-Base85: i486=>i586.

Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
B. Watson 2017-03-21 21:00:56 -04:00 committed by David Spencer
parent 7831d7cde6
commit a6fbf0747f

View file

@ -32,7 +32,7 @@ DOCS="README rfc1924.txt"
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -43,8 +43,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -77,16 +77,13 @@ make
make test
make install DESTDIR=$PKG
# Move man pages
mv $PKG/usr/share/man $PKG/usr/
# Compress man pages
( 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
)
# Remove perllocal.pod and other special files that don't need to be installed
( cd $PKG
# Remove 'special' files
find . -name perllocal.pod \
@ -95,7 +92,6 @@ mv $PKG/usr/share/man $PKG/usr/
| xargs rm -f
)
# Remove empty directories
find $PKG -depth -type d -empty -delete
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION