84480636e2
Show, eq, ord, map, iter, fold: add support for Result.result. Ppx_deriving.Arg: use Result.result instead of polymorphic variants. Ppx_deriving.sanitize: parameterize over an opened module. Add support for [@@deriving] in module type declarations. Add support for loading findlib packages instead of just files in ppx_deriving_main. Treat types explicitly qualified with Pervasives also as builtin. Compatibility with statically linked ppx drivers.
27 lines
740 B
Makefile
27 lines
740 B
Makefile
# $NetBSD: Makefile,v 1.8 2016/08/17 16:00:01 jaapb Exp $
|
|
|
|
GITHUB_PROJECT= ppx_deriving
|
|
DISTNAME= ${GITHUB_PROJECT}-4.0
|
|
PKGNAME= ocaml-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=whitequark/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= jaapb@NetBSD.org
|
|
HOMEPAGE= https://github.com/whitequark/ppx_deriving/
|
|
COMMENT= Type-driven code generation for OCaml
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ocaml-ppx_tools-[0-9]*:../../devel/ocaml-ppx_tools
|
|
|
|
USE_LANGUAGES= c
|
|
USE_TOOLS+= gmake
|
|
OCAML_USE_FINDLIB= yes
|
|
|
|
BUILD_TARGET= build
|
|
|
|
.include "../../devel/ocaml-cppo/buildlink3.mk"
|
|
.include "../../devel/ocaml-result/buildlink3.mk"
|
|
.include "../../devel/ocamlbuild/buildlink3.mk"
|
|
.include "../../mk/ocaml.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|