summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author David Somero2010-06-04 07:05:27 +0200
committer David Somero2010-06-04 07:05:27 +0200
commit4c8fe6eddc51f3fc80919005001ab93685e329d5 (patch)
tree756b8c3e762a1adef6335f95ac4384909ec06974 /graphics
parent7a1084ef1b99c829a7d22abd58f6bb4063b40107 (diff)
downloadslackbuilds-4c8fe6eddc51f3fc80919005001ab93685e329d5.tar.gz
graphics/metapixel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/metapixel/metapixel.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/graphics/metapixel/metapixel.SlackBuild b/graphics/metapixel/metapixel.SlackBuild
index c579edca42..cc3cde1deb 100644
--- a/graphics/metapixel/metapixel.SlackBuild
+++ b/graphics/metapixel/metapixel.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=metapixel
VERSION=${VERSION:-1.0.2}
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e