perl/perl-Authen-SASL: VERSION override, fix shebang, 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 20:42:53 -04:00 committed by David Spencer
parent 02793d69ee
commit 896574c3f5

View file

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
# Copyright (c) 2010, 2011, 2012 Daniel LEVAI
# All rights reserved.
@ -29,13 +29,13 @@
SRCNAM=Authen-SASL
PRGNAM=perl-$SRCNAM
VERSION=2.16
VERSION=${VERSION:-2.16}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -46,8 +46,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"