diff options
author | David Somero | 2010-06-04 07:07:12 +0200 |
---|---|---|
committer | David Somero | 2010-06-04 07:07:12 +0200 |
commit | e035119b14b2ca003710330606eb6882f34259a0 (patch) | |
tree | 8de0687d35199bb489b4e5065631cd3733db18e1 /libraries/hdf5 | |
parent | 59b586f23c138d34ce628ca40054f93b9e8f3bff (diff) | |
download | slackbuilds-e035119b14b2ca003710330606eb6882f34259a0.tar.gz |
libraries/hdf5: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/hdf5')
-rw-r--r-- | libraries/hdf5/hdf5.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/hdf5/hdf5.SlackBuild b/libraries/hdf5/hdf5.SlackBuild index 0432044dc0..245253dbe8 100644 --- a/libraries/hdf5/hdf5.SlackBuild +++ b/libraries/hdf5/hdf5.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=hdf5 VERSION=${VERSION:-1.8.4_patch1} -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi SRCVERSION=$(echo $VERSION | tr "_" "-") |