summaryrefslogtreecommitdiffstats
path: root/libraries/haskell-parsec
diff options
context:
space:
mode:
author David Somero2010-06-04 07:07:07 +0200
committer David Somero2010-06-04 07:07:07 +0200
commit624984d00532b1f6522394d447e2f97f47d8a269 (patch)
tree1c988146758f35565f0986585f3209e941f6a2a4 /libraries/haskell-parsec
parentec203cb7d29b40e84b1538dbc8e7b6830e555e3d (diff)
downloadslackbuilds-624984d00532b1f6522394d447e2f97f47d8a269.tar.gz
libraries/haskell-parsec: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/haskell-parsec')
-rw-r--r--libraries/haskell-parsec/haskell-parsec.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/haskell-parsec/haskell-parsec.SlackBuild b/libraries/haskell-parsec/haskell-parsec.SlackBuild
index b53ab21664..6c311e1514 100644
--- a/libraries/haskell-parsec/haskell-parsec.SlackBuild
+++ b/libraries/haskell-parsec/haskell-parsec.SlackBuild
@@ -7,13 +7,22 @@
PRGNAM=haskell-parsec
VERSION=${VERSION:-3.0.1}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
TARNAM=parsec
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
@@ -30,6 +39,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e