diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:17 -0400 |
commit | d827bf4d815489e7fb51cdffc030fd98056e8c36 (patch) | |
tree | 713549b3c1b3c10f0c40e761257c1e3c121b445d | |
parent | c8c5fa63153cbfe7f047e618669787c0d5e93c58 (diff) | |
download | slackbuilds-d827bf4d815489e7fb51cdffc030fd98056e8c36.tar.gz |
libraries/json-py: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | libraries/json-py/json-py.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/json-py/json-py.SlackBuild b/libraries/json-py/json-py.SlackBuild index 55c4bb70a8..85e22f62ff 100644 --- a/libraries/json-py/json-py.SlackBuild +++ b/libraries/json-py/json-py.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=json-py VERSION=3.4 -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 |