diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:51 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:51 -0400 |
commit | 8f5091932ca3d6d53f9d24e2e1cc12ca2f2e7398 (patch) | |
tree | 6329a944dd9aeb541eb893d69d3063b6fcaee911 /system | |
parent | e98f83776022c0abb140ee4cfafe5387b976c310 (diff) | |
download | slackbuilds-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.SlackBuild | 14 |
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 |