diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:07 -0400 |
commit | 137c44314c84da403e5787dafacb4c3f6433c7af (patch) | |
tree | a2792b56d5af44f0fa3f9a7870fba5ee0dad71f6 /graphics/autopano-sift-C | |
parent | 0a49523b5d5daa0dd7de7668ddc3e0f86e14958e (diff) | |
download | slackbuilds-137c44314c84da403e5787dafacb4c3f6433c7af.tar.gz |
graphics/autopano-sift-C: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/autopano-sift-C')
-rw-r--r-- | graphics/autopano-sift-C/autopano-sift-C.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/graphics/autopano-sift-C/autopano-sift-C.SlackBuild b/graphics/autopano-sift-C/autopano-sift-C.SlackBuild index 54c36167b2..bb3ff1a954 100644 --- a/graphics/autopano-sift-C/autopano-sift-C.SlackBuild +++ b/graphics/autopano-sift-C/autopano-sift-C.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=autopano-sift-C VERSION=2.5.1 -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 set -eu |