summaryrefslogtreecommitdiffstats
path: root/network/hiawatha
diff options
context:
space:
mode:
author David Somero2010-06-04 07:12:54 +0200
committer David Somero2010-06-04 07:12:54 +0200
commit25e3327d5595e5432d849a3b1694bf857d5bb307 (patch)
tree3414ae1eeb0f736e60f61d71c7571dd32fe5f893 /network/hiawatha
parent54d0f154d7ffdee72275ba9b02b8a3105f22258c (diff)
downloadslackbuilds-25e3327d5595e5432d849a3b1694bf857d5bb307.tar.gz
network/hiawatha: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/hiawatha')
-rw-r--r--network/hiawatha/hiawatha.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/hiawatha/hiawatha.SlackBuild b/network/hiawatha/hiawatha.SlackBuild
index 711502d386..c20937f4cf 100644
--- a/network/hiawatha/hiawatha.SlackBuild
+++ b/network/hiawatha/hiawatha.SlackBuild
@@ -23,10 +23,19 @@
PRGNAM=hiawatha
VERSION=${VERSION:-7.2}
-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
@@ -41,6 +50,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e