diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:40 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:40 -0400 |
commit | fd0674d40908bd51310c686d8ca8335f493c6292 (patch) | |
tree | 2efc2e0cfcfac6a997e3ed62c48148dca24ecf84 /development/scons | |
parent | 256a490add4badc89e140cb565abfc790092e6f6 (diff) | |
download | slackbuilds-fd0674d40908bd51310c686d8ca8335f493c6292.tar.gz |
development/scons: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/scons')
-rw-r--r-- | development/scons/scons.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/scons/scons.SlackBuild b/development/scons/scons.SlackBuild index 8f1ba4295d..cbd2d7fd2a 100644 --- a/development/scons/scons.SlackBuild +++ b/development/scons/scons.SlackBuild @@ -5,10 +5,19 @@ PRGNAM="scons" VERSION=${VERSION:-"1.2.0"} -ARCH=${ARCH:-i486} BUILD=${BUILD:-"2"} 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-$VERSION" |