diff options
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 |
commit | 81e0c4f8ea6e4c5d84a703d5c90e9e188aeb3bd7 (patch) | |
tree | 9e3cb72ed3c03616eebc69e57a361310a6eae278 /libraries | |
parent | a6c665d0fcb4bc054828958516546c691ff6b76b (diff) | |
download | slackbuilds-81e0c4f8ea6e4c5d84a703d5c90e9e188aeb3bd7.tar.gz |
libraries/simplejson: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/simplejson/simplejson.SlackBuild | 11 |
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 |