summaryrefslogtreecommitdiffstats
path: root/audio/gnomad2/gnomad2.SlackBuild
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 00:59:58 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 00:59:58 -0400
commit9407b270700127e94b4a9c4427a5eb2b119df171 (patch)
tree01467dc0e40289e1aba26b3f10bfc7e98bcb8415 /audio/gnomad2/gnomad2.SlackBuild
parent6eb99c167a114123e6a6588029294ca64bed020d (diff)
downloadslackbuilds-9407b270700127e94b4a9c4427a5eb2b119df171.tar.gz
slackbuilds-9407b270700127e94b4a9c4427a5eb2b119df171.tar.xz
audio/gnomad2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/gnomad2/gnomad2.SlackBuild')
-rw-r--r--audio/gnomad2/gnomad2.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/gnomad2/gnomad2.SlackBuild b/audio/gnomad2/gnomad2.SlackBuild
index 1ae9b93609..ac2a63ee10 100644
--- a/audio/gnomad2/gnomad2.SlackBuild
+++ b/audio/gnomad2/gnomad2.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM=gnomad2
VERSION=${VERSION:-2.9.4}
-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
@@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e