e77c7b9bc6
on which to build further Haskell libraries and applications. It is intended to provide a comprehensive, stable, and quality tested base for Haskell projects to work from. ok ajacoutot@
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/11/14 15:52:52 kili Exp $
|
|
|
|
COMMENT = Haskell platform meta-package
|
|
|
|
V = 2011.2.0.1
|
|
PKGNAME = haskell-platform-${V}
|
|
|
|
HOMEPAGE = http://hackage.haskell.org/platform/
|
|
|
|
MAINTAINER = Matthias Kilian <kili@openbsd.org>
|
|
|
|
# ghc-7.0 together with a bunch of core libraries provided by the
|
|
# ghc package:
|
|
RUN_DEPENDS += lang/ghc>=7.0.0,<7.1 \
|
|
lang/ghc,-doc>=7.0.0,<7.1
|
|
|
|
# Additional libraries:
|
|
# hs-xhtml-3000.2.0.1 already included in ghc.
|
|
RUN_DEPENDS += www/hs-cgi=3001.1.7.4 \
|
|
devel/hs-fgl=5.4.2.3 \
|
|
graphics/hs-GLUT=2.1.2.1 \
|
|
lang/hs-haskell-src=1.0.1.4 \
|
|
www/hs-html=1.0.1.2 \
|
|
devel/hs-HUnit=1.2.2.3 \
|
|
devel/hs-network=2.3.0.2 \
|
|
graphics/hs-OpenGL=2.2.3.0 \
|
|
devel/hs-parallel=3.1.0.1 \
|
|
devel/hs-parsec=3.1.1 \
|
|
devel/hs-QuickCheck=2.4.1.1 \
|
|
devel/hs-regex-base=0.93.2 \
|
|
devel/hs-regex-compat=0.93.1 \
|
|
devel/hs-regex-posix=0.94.4 \
|
|
devel/hs-stm=2.2.0.1 \
|
|
devel/hs-syb=0.3 \
|
|
archivers/hs-zlib=0.5.3.1 \
|
|
net/hs-HTTP=4000.1.1 \
|
|
devel/hs-deepseq=1.1.0.2
|
|
|
|
# 2011.1 proposals:
|
|
RUN_DEPENDS += devel/hs-text=0.11.0.6 \
|
|
devel/hs-transformers=0.2.2.0 \
|
|
devel/hs-mtl=2.0.1.0
|
|
|
|
# Tools. hscolour should be 1.17, but we already have 1.19.
|
|
RUN_DEPENDS += devel/cabal-install=0.10.2 \
|
|
devel/alex=2.3.5 \
|
|
devel/happy=1.18.6 \
|
|
devel/hscolour=1.19 \
|
|
devel/haddock=2.9.2 \
|
|
devel/haddock,-lib=2.9.2
|
|
|
|
.include <bsd.port.mk>
|