summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:15:51 +0200
committer David Somero2010-06-04 07:15:51 +0200
commit8f5091932ca3d6d53f9d24e2e1cc12ca2f2e7398 (patch)
tree6329a944dd9aeb541eb893d69d3063b6fcaee911 /system
parente98f83776022c0abb140ee4cfafe5387b976c310 (diff)
downloadslackbuilds-8f5091932ca3d6d53f9d24e2e1cc12ca2f2e7398.tar.gz
system/herculesstudio: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/herculesstudio/herculesstudio.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/herculesstudio/herculesstudio.SlackBuild b/system/herculesstudio/herculesstudio.SlackBuild
index b5a39750cd..f652c686ba 100644
--- a/system/herculesstudio/herculesstudio.SlackBuild
+++ b/system/herculesstudio/herculesstudio.SlackBuild
@@ -8,12 +8,21 @@
PRGNAM=herculesstudio
VERSION=${VERSION:-1.1.0}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PRGUNTARRED=HerculesStudio
+# 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
@@ -28,6 +37,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e