summaryrefslogtreecommitdiffstats
path: root/audio/ocp
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:00:27 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:00:27 -0400
commit13db198f5af1b56514e7de566d3d758a09de5640 (patch)
treec0878e5240d7c13f7835ab988189eec1d77a0524 /audio/ocp
parent973ae556a752d199550d88d2921f622ac8b67f1b (diff)
downloadslackbuilds-13db198f5af1b56514e7de566d3d758a09de5640.tar.gz
slackbuilds-13db198f5af1b56514e7de566d3d758a09de5640.tar.xz
audio/ocp: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/ocp')
-rw-r--r--audio/ocp/ocp.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/ocp/ocp.SlackBuild b/audio/ocp/ocp.SlackBuild
index 33a031fd9b..276b6c1e73 100644
--- a/audio/ocp/ocp.SlackBuild
+++ b/audio/ocp/ocp.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=ocp
VERSION=0.1.18
-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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -eu