diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:30 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:30 -0400 |
commit | d50b3e2781fb3019117d6693292dd2d9926deb45 (patch) | |
tree | 7d1111bd25c6a2b2da1a9757301a795ea962985d /graphics/opengtl | |
parent | 39e16db50fc663b7f4774f26a8da8ea8f6e04dc1 (diff) | |
download | slackbuilds-d50b3e2781fb3019117d6693292dd2d9926deb45.tar.gz |
graphics/opengtl: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/opengtl')
-rw-r--r-- | graphics/opengtl/opengtl.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/graphics/opengtl/opengtl.SlackBuild b/graphics/opengtl/opengtl.SlackBuild index 19e250d17d..ead9ead956 100644 --- a/graphics/opengtl/opengtl.SlackBuild +++ b/graphics/opengtl/opengtl.SlackBuild @@ -24,10 +24,19 @@ SRCNAM=OpenGTL VERSION=0.9.12 -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 @@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |