diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:27 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:27 -0400 |
commit | 4c8fe6eddc51f3fc80919005001ab93685e329d5 (patch) | |
tree | 756b8c3e762a1adef6335f95ac4384909ec06974 /graphics/metapixel | |
parent | 7a1084ef1b99c829a7d22abd58f6bb4063b40107 (diff) | |
download | slackbuilds-4c8fe6eddc51f3fc80919005001ab93685e329d5.tar.gz |
graphics/metapixel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/metapixel')
-rw-r--r-- | graphics/metapixel/metapixel.SlackBuild | 14 |
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 |