summaryrefslogtreecommitdiffstats
path: root/libraries/CherryPy
diff options
context:
space:
mode:
author David Somero2010-06-04 07:05:47 +0200
committer David Somero2010-06-04 07:05:47 +0200
commit19af9ededbc561d86c5023d71d517517452e0bfa (patch)
treebfc50f0ca969a29f3604c1e835a347e8398d32f5 /libraries/CherryPy
parent0bc2769d571092e0cd0acb354e08f85297a57d89 (diff)
downloadslackbuilds-19af9ededbc561d86c5023d71d517517452e0bfa.tar.gz
libraries/CherryPy: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/CherryPy')
-rw-r--r--libraries/CherryPy/CherryPy.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/CherryPy/CherryPy.SlackBuild b/libraries/CherryPy/CherryPy.SlackBuild
index b79039e74b..e5073ac888 100644
--- a/libraries/CherryPy/CherryPy.SlackBuild
+++ b/libraries/CherryPy/CherryPy.SlackBuild
@@ -4,10 +4,19 @@
PRGNAM=CherryPy
VERSION=${VERSION:-3.1.2}
-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