diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:28 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:28 -0400 |
commit | bd74dd2ba16e61ad46a5425c99b9fdd01a07148a (patch) | |
tree | 4f06a6a154a333b1a9915515b819ef35610a3189 | |
parent | 0087f672d7a3943e816310f6948d740854f55ffc (diff) | |
download | slackbuilds-bd74dd2ba16e61ad46a5425c99b9fdd01a07148a.tar.gz |
audio/opencore-amr: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | audio/opencore-amr/opencore-amr.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/opencore-amr/opencore-amr.SlackBuild b/audio/opencore-amr/opencore-amr.SlackBuild index 7d6be7d0dd..ca86a5ec0b 100644 --- a/audio/opencore-amr/opencore-amr.SlackBuild +++ b/audio/opencore-amr/opencore-amr.SlackBuild @@ -23,10 +23,19 @@ PRGNAM=opencore-amr VERSION=${VERSION:-0.1.2} -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 @@ -41,6 +50,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |