summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero2010-06-04 07:03:40 +0200
committer David Somero2010-06-04 07:03:40 +0200
commitfd0674d40908bd51310c686d8ca8335f493c6292 (patch)
tree2efc2e0cfcfac6a997e3ed62c48148dca24ecf84 /development
parent256a490add4badc89e140cb565abfc790092e6f6 (diff)
downloadslackbuilds-fd0674d40908bd51310c686d8ca8335f493c6292.tar.gz
development/scons: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/scons/scons.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/development/scons/scons.SlackBuild b/development/scons/scons.SlackBuild
index 8f1ba4295d..cbd2d7fd2a 100644
--- a/development/scons/scons.SlackBuild
+++ b/development/scons/scons.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM="scons"
VERSION=${VERSION:-"1.2.0"}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-"2"}
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-$VERSION"