summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero2010-06-04 07:03:44 +0200
committer David Somero2010-06-04 07:03:44 +0200
commit4e6ba5a241ec30200f8f0ebc89f7b35a529f8b63 (patch)
tree4ba08bd4895c8e0929d5590d1be32b409ca095a7 /development
parent3808cf58e5dc51fb366966d7203dd30327bc96c5 (diff)
downloadslackbuilds-4e6ba5a241ec30200f8f0ebc89f7b35a529f8b63.tar.gz
development/stgit: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/stgit/stgit.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/development/stgit/stgit.SlackBuild b/development/stgit/stgit.SlackBuild
index 0e8a0a0121..39400c7739 100644
--- a/development/stgit/stgit.SlackBuild
+++ b/development/stgit/stgit.SlackBuild
@@ -24,10 +24,19 @@
PKGNAM=stgit
VERSION=${VERSION:-0.15}
-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-$PKGNAM