diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:59 -0400 |
commit | 8748b7b46176e5c2210d7809cebdd320d95ae1bb (patch) | |
tree | 86ae018f692fbaf5c5be649ab6d665a3f5717a91 /audio/gnump3d | |
parent | 9407b270700127e94b4a9c4427a5eb2b119df171 (diff) | |
download | slackbuilds-8748b7b46176e5c2210d7809cebdd320d95ae1bb.tar.gz |
audio/gnump3d: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/gnump3d')
-rw-r--r-- | audio/gnump3d/gnump3d.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/gnump3d/gnump3d.SlackBuild b/audio/gnump3d/gnump3d.SlackBuild index ea6b1e9941..01a3a4b3fe 100644 --- a/audio/gnump3d/gnump3d.SlackBuild +++ b/audio/gnump3d/gnump3d.SlackBuild @@ -28,10 +28,19 @@ PRGNAM=gnump3d VERSION=3.0 -ARCH=${ARCH:-i486} BUILD=${BUILD:-3} 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 @@ -46,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi # gnump3d gets the library directory from a short perl script in the # source directory, thus, there's no need to specify a suffix in this |