summaryrefslogtreecommitdiffstats
path: root/network/choqok
diff options
context:
space:
mode:
author David Somero2010-06-04 07:12:28 +0200
committer David Somero2010-06-04 07:12:28 +0200
commitbef9956743821597f9bd4561611dbb0446fcb5ad (patch)
treeb3e3b1a30fc3c47a4514653fd7a691e675b34f16 /network/choqok
parentc15d2842765912bd20cb672ca72dacb27d04dca5 (diff)
downloadslackbuilds-bef9956743821597f9bd4561611dbb0446fcb5ad.tar.gz
network/choqok: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/choqok')
-rw-r--r--network/choqok/choqok.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/choqok/choqok.SlackBuild b/network/choqok/choqok.SlackBuild
index daca9c8eaf..efd9b722e9 100644
--- a/network/choqok/choqok.SlackBuild
+++ b/network/choqok/choqok.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=choqok
VERSION=${VERSION:-0.6.6}
-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
@@ -26,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e