openbsd-ports/devel/hs-hint/Makefile
kili 9042321086 This library defines an Interpreter monad. It allows to load Haskell
modules, browse them, type-check and evaluate strings with Haskell
expressions and even coerce them into values. The library is
thread-safe and type-safe (even the coercion of expressions to
values).
It is, esentially, a huge subset of the GHC API wrapped in a simpler
API.

ok jasper@
2011-05-01 21:21:35 +00:00

28 lines
612 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2011/05/01 21:21:35 kili Exp $
COMMENT = Runtime Haskell interpreter (GHC API wrapper)
DISTNAME = hint-0.3.3.2
CATEGORIES = devel
MAINTAINER = Matthias Kilian <kili@openbsd.org>
# BSD3
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = lang/ghc
RUN_DEPENDS += devel/hs-MonadCatchIO-mtl>=0.2 \
devel/hs-ghc-paths \
devel/hs-ghc-mtl>=01.0.1.0,<1.1.0.0 \
devel/hs-mtl \
lang/hs-haskell-src
BUILD_DEPENDS += ${RUN_DEPENDS}
MODGHC_BUILD = cabal hackage haddock register
.include <bsd.port.mk>