openbsd-ports/lang/hs-syntactic/Makefile
kili 96b710d449 This library provides:
* Generic representation and manipulation of abstract syntax
  using a practical encoding of open data types (based on Data
  Types a la Carte)

* Utilities for analyzing and transforming generic syntax

* General variable binding constructs

* Utilities for building extensible embedded languages based
  on generic syntax

* A small proof-of-concept implementation of the embedded
  language Feldspar (see the examples directory)

ok jasper@
2012-10-31 19:21:14 +00:00

26 lines
561 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2012/10/31 19:21:14 kili Exp $
COMMENT = abstract syntax and utilities for embedded languages
DISTNAME = syntactic-1.4
CATEGORIES = devel lang
# 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-constraints \
devel/hs-data-hash \
devel/hs-mtl>=2,<3 \
devel/hs-transformers>=0.2 \
devel/hs-tuple>=0.2
.include <bsd.port.mk>