summaryrefslogtreecommitdiffstats
path: root/system/gparted
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:15:45 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:15:45 -0400
commit2d0655300301d97a0ed542a0a9434cf37785f2dc (patch)
tree45d72b56946e8fcd17d87ac25a1802341979a1cc /system/gparted
parentc6263649395a33fb0b785c9ecaa211f986191b59 (diff)
downloadslackbuilds-2d0655300301d97a0ed542a0a9434cf37785f2dc.tar.gz
slackbuilds-2d0655300301d97a0ed542a0a9434cf37785f2dc.tar.xz
system/gparted: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/gparted')
-rw-r--r--system/gparted/gparted.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/gparted/gparted.SlackBuild b/system/gparted/gparted.SlackBuild
index e3591ffef6..9b5ea8570f 100644
--- a/system/gparted/gparted.SlackBuild
+++ b/system/gparted/gparted.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=gparted
VERSION=0.5.2
-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