5e665deb24
Monad classes using type families, with instances for various monad transformers, inspired by the paper "Functional Programming with Overloading and Higher-Order Polymorphism", by Mark P Jones. ok kili@
24 lines
505 B
Makefile
24 lines
505 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/08 16:20:19 jasper Exp $
|
|
|
|
COMMENT= Monad classes, using type families
|
|
|
|
DISTNAME= monads-tf-0.1.0.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>
|
|
|
|
# BSD3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES= lang/ghc
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
RUN_DEPENDS = devel/hs-transformers
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|