summaryrefslogtreecommitdiffstats
path: root/libraries/haskell-packedstring
diff options
context:
space:
mode:
author David Somero2010-06-04 07:07:06 +0200
committer David Somero2010-06-04 07:07:06 +0200
commit034344af78eca2b7b3ecadb173df4c99875930bc (patch)
tree31657bfc3ae869bad6bb90f2653228a746d86421 /libraries/haskell-packedstring
parent0b722ab4abb068b0c00bd98be8ff44bdb9fbe468 (diff)
downloadslackbuilds-034344af78eca2b7b3ecadb173df4c99875930bc.tar.gz
libraries/haskell-packedstring: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/haskell-packedstring')
-rw-r--r--libraries/haskell-packedstring/haskell-packedstring.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/haskell-packedstring/haskell-packedstring.SlackBuild b/libraries/haskell-packedstring/haskell-packedstring.SlackBuild
index aa29f977bd..3300fe5a0a 100644
--- a/libraries/haskell-packedstring/haskell-packedstring.SlackBuild
+++ b/libraries/haskell-packedstring/haskell-packedstring.SlackBuild
@@ -7,13 +7,22 @@
PRGNAM=haskell-packedstring
VERSION=${VERSION:-0.1.0.1}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
TARNAM=packedstring
GHC_VERSION=$(ghc-pkg field ghc version | cut -d' ' -f2)
+# 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