summaryrefslogtreecommitdiffstats
path: root/network/umtsmon
diff options
context:
space:
mode:
author David Somero2010-06-04 07:14:22 +0200
committer David Somero2010-06-04 07:14:22 +0200
commitff84df0147de4c1f5aa443475f4e7cfc16dff5a4 (patch)
tree84dbf667fafdf8e36f71cb31ccea23b983a4d8b8 /network/umtsmon
parent0b0cd68b80ae2d89709e2beb9cab4eacc1e593af (diff)
downloadslackbuilds-ff84df0147de4c1f5aa443475f4e7cfc16dff5a4.tar.gz
network/umtsmon: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/umtsmon')
-rw-r--r--network/umtsmon/umtsmon.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/umtsmon/umtsmon.SlackBuild b/network/umtsmon/umtsmon.SlackBuild
index 55e04070e0..d2b19c179c 100644
--- a/network/umtsmon/umtsmon.SlackBuild
+++ b/network/umtsmon/umtsmon.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=umtsmon
VERSION=0.9
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+# 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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e