summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:07 +0200
committer David Somero2010-06-04 07:11:07 +0200
commit10ed7da30ce59bb98e8b51ce91e9d649abfef063 (patch)
tree6a0d38bbf0aacc70e601ce4c46df578b9a9f8030 /misc
parentccec52b1b691e465bc825df6a82d6eccde20d9db (diff)
downloadslackbuilds-10ed7da30ce59bb98e8b51ce91e9d649abfef063.tar.gz
misc/lbdb: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/lbdb/lbdb.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/misc/lbdb/lbdb.SlackBuild b/misc/lbdb/lbdb.SlackBuild
index 8f42823843..f215a5ae8b 100644
--- a/misc/lbdb/lbdb.SlackBuild
+++ b/misc/lbdb/lbdb.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=lbdb
VERSION=${VERSION:-0.36}
-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 # Exit on most errors