summaryrefslogtreecommitdiffstats
path: root/network/perl-Socket6
diff options
context:
space:
mode:
author David Somero2010-06-04 07:13:53 +0200
committer David Somero2010-06-04 07:13:53 +0200
commitf259c2be6cc7d6b632e4de17cb4a3db945118d6c (patch)
treee42e29bf0bbe120a77ea34e5110ae7726bd45e19 /network/perl-Socket6
parent28aff868960e87d150a017335abd4cd502a5643c (diff)
downloadslackbuilds-f259c2be6cc7d6b632e4de17cb4a3db945118d6c.tar.gz
network/perl-Socket6: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/perl-Socket6')
-rw-r--r--network/perl-Socket6/perl-Socket6.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/perl-Socket6/perl-Socket6.SlackBuild b/network/perl-Socket6/perl-Socket6.SlackBuild
index 3d8694c789..ceb6388bdd 100644
--- a/network/perl-Socket6/perl-Socket6.SlackBuild
+++ b/network/perl-Socket6/perl-Socket6.SlackBuild
@@ -24,13 +24,22 @@
PRGNAM=perl-Socket6
VERSION=${VERSION:-0.23}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRC_PRGNAM=Socket6
DOCS="README"
+# 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
+
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@@ -45,6 +54,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e