summaryrefslogtreecommitdiffstats
path: root/system/isomaster
diff options
context:
space:
mode:
author David Somero2010-06-04 07:15:57 +0200
committer David Somero2010-06-04 07:15:57 +0200
commitc434c8dd42b4d5473ce9140b2e612e5c6d41f5e5 (patch)
tree5535a866069c96ecae0abc61a322646bf1dd96da /system/isomaster
parentf6bc6003dcbdad3f426a1b1b71fcb3af63024263 (diff)
downloadslackbuilds-c434c8dd42b4d5473ce9140b2e612e5c6d41f5e5.tar.gz
system/isomaster: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/isomaster')
-rw-r--r--system/isomaster/isomaster.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/isomaster/isomaster.SlackBuild b/system/isomaster/isomaster.SlackBuild
index ed50a0f9f2..80d7df20c8 100644
--- a/system/isomaster/isomaster.SlackBuild
+++ b/system/isomaster/isomaster.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=isomaster
VERSION=1.3.7
-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