summaryrefslogtreecommitdiffstats
path: root/system/schedtool
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:45 +0200
committer David Somero2010-06-04 07:16:45 +0200
commit860dd20d0cb292f68a382cbde45cde51888334d9 (patch)
tree18cd0862f7d8b676568ff048bb027653432bd701 /system/schedtool
parent799d6146312fec610c2512fc0589feb861dea18f (diff)
downloadslackbuilds-860dd20d0cb292f68a382cbde45cde51888334d9.tar.gz
system/schedtool: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/schedtool')
-rw-r--r--system/schedtool/schedtool.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/schedtool/schedtool.SlackBuild b/system/schedtool/schedtool.SlackBuild
index c430e34b19..da240e5b06 100644
--- a/system/schedtool/schedtool.SlackBuild
+++ b/system/schedtool/schedtool.SlackBuild
@@ -7,10 +7,19 @@
PRGNAM=schedtool
VERSION=${VERSION:-1.3.0}
-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