diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:29 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:29 -0400 |
commit | ea2b1109243b4155984f098285af62d94be81640 (patch) | |
tree | 3fdc247196e1bd9c48b9c821c98696a2ec2d3a07 /development | |
parent | 2b007184768f2510f9e08f56667d619696ea982a (diff) | |
download | slackbuilds-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.SlackBuild | 11 |
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 |