diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-16 01:20:14 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-20 12:32:23 -0500 |
commit | 6a511b1c665a1f7efecadaa3447af889b1dcba58 (patch) | |
tree | 2266375d0edd4ec28f98767b54af3fbd8edebea2 /haskell/ghc | |
parent | f228ec7eefcb4ab77057015a1b13c85973cb68ee (diff) | |
download | slackbuilds-6a511b1c665a1f7efecadaa3447af889b1dcba58.tar.gz |
haskell/*: Moved all of the Haskell stuff to here
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'haskell/ghc')
-rw-r--r-- | haskell/ghc/README | 3 | ||||
-rw-r--r-- | haskell/ghc/ghc.SlackBuild | 97 | ||||
-rw-r--r-- | haskell/ghc/ghc.info | 10 | ||||
-rw-r--r-- | haskell/ghc/slack-desc | 19 |
4 files changed, 129 insertions, 0 deletions
diff --git a/haskell/ghc/README b/haskell/ghc/README new file mode 100644 index 0000000000..d4cc3b8fd5 --- /dev/null +++ b/haskell/ghc/README @@ -0,0 +1,3 @@ +GHC is a state-of-the-art, open source, compiler and interactive environment +for the functional language Haskell. This is a complete build, including +interactive system and profiling libraries and documentation. diff --git a/haskell/ghc/ghc.SlackBuild b/haskell/ghc/ghc.SlackBuild new file mode 100644 index 0000000000..8d4f600d77 --- /dev/null +++ b/haskell/ghc/ghc.SlackBuild @@ -0,0 +1,97 @@ +#!/bin/sh + +# Slackware build script for ghc + +# Written by Mikko Värri (vmj@linuxbox.fi) +# Public domain. + +PRGNAM=ghc +VERSION=${VERSION:-7.0.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" + TARARCH=i386 +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" + TARARCH=i386 +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" + TARARCH="x86_64" +else + printf "$ARCH is not supported...\n" + exit 1 +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION-$TARARCH-unknown-linux.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +if [ "$TARARCH" = "i386" ] ; then + # In i386 binary distribution, the prebuilt binaries used to install GHC + # are linked against libffi.so.5, but slackware ships with libffi.so.4 + # (in d/gcc-java). + # Luckily, GHC includes its own copy of libffi. It's only under different + # name (to avoid conflicts with system libffi). + # For the duration of the "configure && make install", let's copy the + # bundled libffi to expected name. + cp libffi/dist-install/build/libHSffi-ghc${VERSION}.so libffi/libffi.so.5 + if [ "x$LD_LIBRARY_PATH" = "x" ] ; then + LD_LIBRARY_PATH=$TMP/$PRGNAM-$VERSION/libffi/ + else + LD_LIBRARY_PATH=$TMP/$PRGNAM-$VERSION/libffi/:$LD_LIBRARY_PATH + fi + export LD_LIBRARY_PATH +fi + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --libdir=/usr/lib${LIBDIRSUFFIX} + +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; + +cp -a INSTALL LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/haskell/ghc/ghc.info b/haskell/ghc/ghc.info new file mode 100644 index 0000000000..e67628dfbd --- /dev/null +++ b/haskell/ghc/ghc.info @@ -0,0 +1,10 @@ +PRGNAM="ghc" +VERSION="7.0.1" +HOMEPAGE="http://haskell.org/ghc/" +DOWNLOAD="http://haskell.org/ghc/dist/7.0.1/ghc-7.0.1-i386-unknown-linux.tar.bz2" +MD5SUM="a06ca14cd21a7c79e77c360d8c3c405f" +DOWNLOAD_x86_64="http://haskell.org/ghc/dist/7.0.1/ghc-7.0.1-x86_64-unknown-linux.tar.bz2" +MD5SUM_x86_64="618cf4a24269ac03292fa5abb0ae3b82" +MAINTAINER="Mikko Värri" +EMAIL="vmj@linuxbox.fi" +APPROVED="dsomero" diff --git a/haskell/ghc/slack-desc b/haskell/ghc/slack-desc new file mode 100644 index 0000000000..a1743f135e --- /dev/null +++ b/haskell/ghc/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +ghc: ghc (The Glasgow Haskell Compiler) +ghc: +ghc: GHC is a state-of-the-art, open source, compiler and interactive +ghc: environment for the functional language Haskell. +ghc: This is a complete build, including interactive system, profiling +ghc: libraries and documentation. +ghc: +ghc: Homepage: http://haskell.org/ghc/ +ghc: +ghc: +ghc: |