diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:48 -0400 |
commit | b5ad1c98c3a1143851faf03c11232e672ca6df88 (patch) | |
tree | 4f61d7c228415676b370995b22a25b9075ff1150 /system/splix | |
parent | 73d59f24d6efac9aeca6955a2478bc9b2b1488c6 (diff) | |
download | slackbuilds-b5ad1c98c3a1143851faf03c11232e672ca6df88.tar.gz |
system/splix: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/splix')
-rw-r--r-- | system/splix/splix.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/splix/splix.SlackBuild b/system/splix/splix.SlackBuild index 4bcbb664a9..48b9f45708 100644 --- a/system/splix/splix.SlackBuild +++ b/system/splix/splix.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=splix VERSION=2.0.0 -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 @@ -29,6 +38,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi # Whether or not to use JBIG (see README) |