diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:52 -0400 |
commit | b540a539cce79facf15abc5eb0f3615e9fd814f4 (patch) | |
tree | 8d815e3be50a498301a6d1e2c432764a3ecdd85a /audio/faac/faac.SlackBuild | |
parent | 50e002739868f54047de87a8c1df82a9f96f0cdf (diff) | |
download | slackbuilds-b540a539cce79facf15abc5eb0f3615e9fd814f4.tar.gz |
audio/faac: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/faac/faac.SlackBuild')
-rw-r--r-- | audio/faac/faac.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/faac/faac.SlackBuild b/audio/faac/faac.SlackBuild index 342ade25d7..279532655d 100644 --- a/audio/faac/faac.SlackBuild +++ b/audio/faac/faac.SlackBuild @@ -27,10 +27,19 @@ PRGNAM=faac VERSION=${VERSION:-1.28} -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 @@ -45,6 +54,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi # Seems that libmp4v2 is a complicated critter. Here's how we think it works: |