9905b2ecb8
concurrent thread that will eventually deliver a value of type "a". The package provides ways to create "Async" computations, wait for their results, and cancel them. ok sthen@
28 lines
611 B
Makefile
28 lines
611 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/12/02 20:10:22 kili Exp $
|
|
|
|
COMMENT = asynchronous IO operations
|
|
|
|
DISTNAME = async-2.0.1.3
|
|
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
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = devel/hs-stm>=2.2,<2.5
|
|
|
|
# Needs --enable-test, which will probably set by ghc.port.mk soon
|
|
# (when I have some numbers about build times).
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|