summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:17:18 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:17:18 -0400
commit7e47289f55e5d83f685fad3b735d96b1eb8ee1a8 (patch)
treeb4bd786a113cd014c37bdd1e1e8c88745329c3f0
parentf91394286d8ea7f07d3a278a5a2ba3d084c1b4fa (diff)
downloadslackbuilds-7e47289f55e5d83f685fad3b735d96b1eb8ee1a8.tar.gz
slackbuilds-7e47289f55e5d83f685fad3b735d96b1eb8ee1a8.tar.xz
system/zeroinstall-injector: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r--system/zeroinstall-injector/zeroinstall-injector.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/zeroinstall-injector/zeroinstall-injector.SlackBuild b/system/zeroinstall-injector/zeroinstall-injector.SlackBuild
index f05b24fd3e..3a7d551117 100644
--- a/system/zeroinstall-injector/zeroinstall-injector.SlackBuild
+++ b/system/zeroinstall-injector/zeroinstall-injector.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=zeroinstall-injector
VERSION=0.47
-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