diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:04 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:04 -0400 |
commit | 22c0d8587639f04dd517fa3eb9d5ca052c202143 (patch) | |
tree | 039c3cb3296226e9f64c47f78edf47a72a4a4b8e /libraries/haskell-html | |
parent | cea232ebfa4608a2f4f31a005b1391b994be8198 (diff) | |
download | slackbuilds-22c0d8587639f04dd517fa3eb9d5ca052c202143.tar.gz |
libraries/haskell-html: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/haskell-html')
-rw-r--r-- | libraries/haskell-html/haskell-html.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/haskell-html/haskell-html.SlackBuild b/libraries/haskell-html/haskell-html.SlackBuild index 50b6eac100..92c343b7d4 100644 --- a/libraries/haskell-html/haskell-html.SlackBuild +++ b/libraries/haskell-html/haskell-html.SlackBuild @@ -7,13 +7,22 @@ PRGNAM=haskell-html VERSION=${VERSION:-1.0.1.2} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} TARNAM=html 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 |