summaryrefslogtreecommitdiffstats
path: root/perl/perl-Math-Base85
diff options
context:
space:
mode:
author B. Watson2017-03-22 02:00:56 +0100
committer David Spencer2017-03-25 14:29:30 +0100
commita6fbf0747fe81d5eaa205fc3305735784510291b (patch)
tree2bd5724293805d975ea489ea4f790e731d03f898 /perl/perl-Math-Base85
parent7831d7cde6693c52100d9c2ae6869a377208bffb (diff)
downloadslackbuilds-a6fbf0747fe81d5eaa205fc3305735784510291b.tar.gz
perl/perl-Math-Base85: i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-Math-Base85')
-rw-r--r--perl/perl-Math-Base85/perl-Math-Base85.SlackBuild10
1 files changed, 3 insertions, 7 deletions
diff --git a/perl/perl-Math-Base85/perl-Math-Base85.SlackBuild b/perl/perl-Math-Base85/perl-Math-Base85.SlackBuild
index c1b4ecaaa9..4f8a8ba867 100644
--- a/perl/perl-Math-Base85/perl-Math-Base85.SlackBuild
+++ b/perl/perl-Math-Base85/perl-Math-Base85.SlackBuild
@@ -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