summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero2010-06-04 07:03:29 +0200
committer David Somero2010-06-04 07:03:29 +0200
commitea2b1109243b4155984f098285af62d94be81640 (patch)
tree3fdc247196e1bd9c48b9c821c98696a2ec2d3a07 /development
parent2b007184768f2510f9e08f56667d619696ea982a (diff)
downloadslackbuilds-ea2b1109243b4155984f098285af62d94be81640.tar.gz
development/pydblite: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/pydblite/pydblite.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/development/pydblite/pydblite.SlackBuild b/development/pydblite/pydblite.SlackBuild
index 052ebf3c84..858ad8fa46 100644
--- a/development/pydblite/pydblite.SlackBuild
+++ b/development/pydblite/pydblite.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pydblite
VERSION=${VERSION:-2.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