summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:13 +0200
committer David Somero2010-06-04 07:16:13 +0200
commite9d9a894a0c2b93a6bea02edfad92aa263ef080a (patch)
treebcc8e938820d95666e6fc09352e57a2ca409c7fc /system
parent379bbf3088990554e6a1a672c4340b14e3e952f4 (diff)
downloadslackbuilds-e9d9a894a0c2b93a6bea02edfad92aa263ef080a.tar.gz
system/ncdu: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/ncdu/ncdu.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/ncdu/ncdu.SlackBuild b/system/ncdu/ncdu.SlackBuild
index 28aa400c0a..2f15443523 100644
--- a/system/ncdu/ncdu.SlackBuild
+++ b/system/ncdu/ncdu.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=ncdu
VERSION=1.6
-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