summaryrefslogtreecommitdiffstats
path: root/libraries/PythonDaap
diff options
context:
space:
mode:
author David Somero2010-06-04 07:05:57 +0200
committer David Somero2010-06-04 07:05:57 +0200
commit26b51bc9629e40b44658c33309167fcb9569c576 (patch)
tree5cecc1195846194878560f5f04cd6e34de1c1fe6 /libraries/PythonDaap
parentd9ffb37d694049ffb2ef61c27b230088c8b95427 (diff)
downloadslackbuilds-26b51bc9629e40b44658c33309167fcb9569c576.tar.gz
libraries/PythonDaap: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/PythonDaap')
-rw-r--r--libraries/PythonDaap/PythonDaap.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/PythonDaap/PythonDaap.SlackBuild b/libraries/PythonDaap/PythonDaap.SlackBuild
index 6a13c0a57b..b89cf98603 100644
--- a/libraries/PythonDaap/PythonDaap.SlackBuild
+++ b/libraries/PythonDaap/PythonDaap.SlackBuild
@@ -4,10 +4,19 @@
PRGNAM=PythonDaap
VERSION=${VERSION:-0.7.1}
-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
@@ -22,6 +31,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e