summaryrefslogtreecommitdiffstats
path: root/audio/mp3info
diff options
context:
space:
mode:
author David Somero2010-06-04 07:00:18 +0200
committer David Somero2010-06-04 07:00:18 +0200
commit9d348de5dc0ed71a98443a9a796a6b06d1227cbd (patch)
tree428813d55ddca67aacd5c748224644cfc10462a2 /audio/mp3info
parentf433dd5513d04e7fbc82b8c90d2c3a7773c38811 (diff)
downloadslackbuilds-9d348de5dc0ed71a98443a9a796a6b06d1227cbd.tar.gz
audio/mp3info: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/mp3info')
-rw-r--r--audio/mp3info/mp3info.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/mp3info/mp3info.SlackBuild b/audio/mp3info/mp3info.SlackBuild
index 09385e21fa..90a9ada1da 100644
--- a/audio/mp3info/mp3info.SlackBuild
+++ b/audio/mp3info/mp3info.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=mp3info
VERSION=0.8.5a
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e