summaryrefslogtreecommitdiffstats
path: root/libraries/guichan
diff options
context:
space:
mode:
author David Somero2010-06-04 07:06:55 +0200
committer David Somero2010-06-04 07:06:55 +0200
commit9a198abdbce85b16199d6d4875397fbc3aa10f18 (patch)
treea69ad018be80eb6a8b75738813e1e106a0a7ac89 /libraries/guichan
parentbcc7a1e013729a491dab5fadb14b80d30cec5231 (diff)
downloadslackbuilds-9a198abdbce85b16199d6d4875397fbc3aa10f18.tar.gz
libraries/guichan: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/guichan')
-rw-r--r--libraries/guichan/guichan.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/guichan/guichan.SlackBuild b/libraries/guichan/guichan.SlackBuild
index a0a22492ce..6f9448d243 100644
--- a/libraries/guichan/guichan.SlackBuild
+++ b/libraries/guichan/guichan.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=guichan
VERSION=0.8.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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -eu