summaryrefslogtreecommitdiffstats
path: root/libraries/haskell-regex-posix
diff options
context:
space:
mode:
author David Somero2010-06-04 07:07:09 +0200
committer David Somero2010-06-04 07:07:09 +0200
commitd83e2f6148a14e74bf283e40fbc80f486809db2e (patch)
tree99b4f6935cb75b8a0bdabc3365edbf01c8f7a999 /libraries/haskell-regex-posix
parent158e7086b23b49ea2004bc2714582dd55f155855 (diff)
downloadslackbuilds-d83e2f6148a14e74bf283e40fbc80f486809db2e.tar.gz
libraries/haskell-regex-posix: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/haskell-regex-posix')
-rw-r--r--libraries/haskell-regex-posix/haskell-regex-posix.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/haskell-regex-posix/haskell-regex-posix.SlackBuild b/libraries/haskell-regex-posix/haskell-regex-posix.SlackBuild
index 29910aa786..a5d4a2050a 100644
--- a/libraries/haskell-regex-posix/haskell-regex-posix.SlackBuild
+++ b/libraries/haskell-regex-posix/haskell-regex-posix.SlackBuild
@@ -7,13 +7,22 @@
PRGNAM=haskell-regex-posix
VERSION=${VERSION:-0.94.1}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
TARNAM=regex-posix
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