summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:14 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:14 -0400
commit19cc674681492e4f9f31917b9b7f313cf8c2132f (patch)
treeeadeba72e06990ab69a79dbc4a1be61484149947 /libraries
parentaee386c02f845236fa395be630b6ce953f517132 (diff)
downloadslackbuilds-19cc674681492e4f9f31917b9b7f313cf8c2132f.tar.gz
slackbuilds-19cc674681492e4f9f31917b9b7f313cf8c2132f.tar.xz
libraries/python-spidermonkey: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/python-spidermonkey/python-spidermonkey.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/python-spidermonkey/python-spidermonkey.SlackBuild b/libraries/python-spidermonkey/python-spidermonkey.SlackBuild
index de00a3772d..d4d7d3851d 100644
--- a/libraries/python-spidermonkey/python-spidermonkey.SlackBuild
+++ b/libraries/python-spidermonkey/python-spidermonkey.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=python-spidermonkey
VERSION=${VERSION:-0.0.8}
-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