summaryrefslogtreecommitdiffstats
path: root/libraries/simplejson
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:26 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:26 -0400
commit81e0c4f8ea6e4c5d84a703d5c90e9e188aeb3bd7 (patch)
tree9e3cb72ed3c03616eebc69e57a361310a6eae278 /libraries/simplejson
parenta6c665d0fcb4bc054828958516546c691ff6b76b (diff)
downloadslackbuilds-81e0c4f8ea6e4c5d84a703d5c90e9e188aeb3bd7.tar.gz
slackbuilds-81e0c4f8ea6e4c5d84a703d5c90e9e188aeb3bd7.tar.xz
libraries/simplejson: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/simplejson')
-rw-r--r--libraries/simplejson/simplejson.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/simplejson/simplejson.SlackBuild b/libraries/simplejson/simplejson.SlackBuild
index 31385d45c2..63ae424522 100644
--- a/libraries/simplejson/simplejson.SlackBuild
+++ b/libraries/simplejson/simplejson.SlackBuild
@@ -4,10 +4,19 @@
PRGNAM=simplejson
VERSION=${VERSION:-2.1.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