summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:06:13 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:06:13 -0400
commit4a2343f07d3150014f1b42a54282d843962e09e6 (patch)
treea46b789cd099d9437ea48b3b0e6bd9bb9bf4551b /libraries
parentcebceeeb70112670c090030e82c960b579516c16 (diff)
downloadslackbuilds-4a2343f07d3150014f1b42a54282d843962e09e6.tar.gz
slackbuilds-4a2343f07d3150014f1b42a54282d843962e09e6.tar.xz
libraries/cddb-py: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/cddb-py/cddb-py.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/cddb-py/cddb-py.SlackBuild b/libraries/cddb-py/cddb-py.SlackBuild
index 89d48636a8..8d3ce53a9a 100644
--- a/libraries/cddb-py/cddb-py.SlackBuild
+++ b/libraries/cddb-py/cddb-py.SlackBuild
@@ -8,10 +8,19 @@
PRGNAM=cddb-py
ORIGNAM=CDDB
VERSION=${VERSION:-1.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
@@ -28,6 +37,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e