summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:37 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:37 -0400
commit007a95ae0c2c4c0078cd6f9ec5504ad16291c8c2 (patch)
treed03bb19ca3388a2f04799e521c0af67866392b12 /development
parent8d691713838f986e5df2a4c87be2a0b8a4a8c8de (diff)
downloadslackbuilds-007a95ae0c2c4c0078cd6f9ec5504ad16291c8c2.tar.gz
slackbuilds-007a95ae0c2c4c0078cd6f9ec5504ad16291c8c2.tar.xz
development/rarian: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/rarian/rarian.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/development/rarian/rarian.SlackBuild b/development/rarian/rarian.SlackBuild
index 68660a0321..e61db85018 100644
--- a/development/rarian/rarian.SlackBuild
+++ b/development/rarian/rarian.SlackBuild
@@ -33,10 +33,19 @@
PRGNAM=rarian
VERSION=${VERSION:-0.8.1}
-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
@@ -53,6 +62,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e