summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero2010-06-04 07:03:39 +0200
committer David Somero2010-06-04 07:03:39 +0200
commit528c823b37cc06a317334b32817c7386e665d661 (patch)
tree84347e3c3d2e3cf5647b502e5e9f498138b75ebb /development
parentea02ec75b1c5f62cc781cd0f5a5aab8db43ce369 (diff)
downloadslackbuilds-528c823b37cc06a317334b32817c7386e665d661.tar.gz
development/scala: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/scala/scala.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/development/scala/scala.SlackBuild b/development/scala/scala.SlackBuild
index 7a33a3bdef..c44662b0bf 100644
--- a/development/scala/scala.SlackBuild
+++ b/development/scala/scala.SlackBuild
@@ -7,10 +7,19 @@
PRGNAM=scala
VERSION=${VERSION:-2.7.7.final}
-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