diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:11 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:11 -0400 |
commit | 60a1cfed7f49b159bcda41d46067cd174c11577c (patch) | |
tree | c094128d576c9bf394fc7b19241f58694b846361 /audio | |
parent | 4fe32aa026362181db2c442260b62e66dba465e0 (diff) |
audio/lv2core: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/lv2core/lv2core.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/lv2core/lv2core.SlackBuild b/audio/lv2core/lv2core.SlackBuild index b45039ad3f52..89010f81429b 100644 --- a/audio/lv2core/lv2core.SlackBuild +++ b/audio/lv2core/lv2core.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=lv2core VERSION=${VERSION:-3.0} -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |