diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:39 -0400 |
commit | 528c823b37cc06a317334b32817c7386e665d661 (patch) | |
tree | 84347e3c3d2e3cf5647b502e5e9f498138b75ebb | |
parent | ea02ec75b1c5f62cc781cd0f5a5aab8db43ce369 (diff) | |
download | slackbuilds-528c823b37cc06a317334b32817c7386e665d661.tar.gz |
development/scala: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | development/scala/scala.SlackBuild | 11 |
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 |