diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:14 -0400 |
commit | 8c150b5730117b3e90f4a21bf85de4821a7a1961 (patch) | |
tree | 3be5cb19c62e070ed5706f5d0d8c5aba7ba2b2e5 /libraries/id3lib | |
parent | 9e619dd4e6686e48f12c063da1b4b1ed5166ca2e (diff) |
libraries/id3lib: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/id3lib')
-rw-r--r-- | libraries/id3lib/id3lib.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/id3lib/id3lib.SlackBuild b/libraries/id3lib/id3lib.SlackBuild index 522c1dd9985c..811fbfe1e20c 100644 --- a/libraries/id3lib/id3lib.SlackBuild +++ b/libraries/id3lib/id3lib.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=id3lib VERSION=3.8.3 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" SLKLDFLAGS="-L/usr/lib64" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |