summaryrefslogtreecommitdiffstats
path: root/network/perl-Net-CIDR
diff options
context:
space:
mode:
Diffstat (limited to 'network/perl-Net-CIDR')
-rwxr-xr-xnetwork/perl-Net-CIDR/perl-Net-CIDR.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild b/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild
index 75393b5af3..2b33c59fda 100755
--- a/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild
+++ b/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild
@@ -27,9 +27,18 @@
SRCNAM=Net-CIDR
PRGNAM=perl-Net-CIDR
VERSION=0.13
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
+# 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