summaryrefslogtreecommitdiffstats
path: root/misc/bchunk
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:47 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:47 -0400
commitdab45f1f6d074b66ab66db35601ac45a1a9dfd40 (patch)
treef5454c1618c9dcc992517fa06227d8d5ebc8508d /misc/bchunk
parentd3492fa4fb78ce5119707f6d4c1e2dbe2502d814 (diff)
downloadslackbuilds-dab45f1f6d074b66ab66db35601ac45a1a9dfd40.tar.gz
slackbuilds-dab45f1f6d074b66ab66db35601ac45a1a9dfd40.tar.xz
misc/bchunk: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc/bchunk')
-rw-r--r--misc/bchunk/bchunk.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/misc/bchunk/bchunk.SlackBuild b/misc/bchunk/bchunk.SlackBuild
index cc148285c4..d4d5a72ba2 100644
--- a/misc/bchunk/bchunk.SlackBuild
+++ b/misc/bchunk/bchunk.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=bchunk
VERSION=${VERSION:-1.2.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