1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Extension to OCaml for deriving functions from type declarations. Includes

derivers for pretty-printing, type-safe marshalling with structure-sharing,
dynamic typing, equality, and more. This is a version of the deriving library
adapted for use with Ocsigen.

WWW: http://github.com/hnrgrgr/deriving

PR:		ports/176162
Submitted by:	Jaap Boender <jaapb@kerguelen.org>
This commit is contained in:
Martin Wilke 2013-02-19 16:27:17 +00:00
parent 55d0515f12
commit f3edd7f795
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=312585
4 changed files with 29 additions and 0 deletions

View File

@ -1286,6 +1286,7 @@
SUBDIR += ocaml-cfg
SUBDIR += ocaml-classes
SUBDIR += ocaml-cppo
SUBDIR += ocaml-deriving-ocsigen
SUBDIR += ocaml-equeue
SUBDIR += ocaml-event
SUBDIR += ocaml-extlib

View File

@ -0,0 +1,20 @@
# Created by: Jaap Boender <jaapb@kerguelen.org>
# $FreeBSD$
PORTNAME= deriving-ocsigen
PORTVERSION= 0.3c
CATEGORIES= devel www
MASTER_SITES= http://ocsigen.org/download/
PKGNAMEPREFIX= ocaml-
MAINTAINER= jaapb@kerguelen.org
COMMENT= Function derivation library
USE_OCAML= yes
USE_OCAML_FINDLIB= yes
USE_OCAMLFIND_PLIST= yes
USE_OCAML_LDCONFIG= yes
USE_GMAKE= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (deriving-ocsigen-0.3c.tar.gz) = eb6e7e647b6f2effcc65c9b32076fbc12e366e16035447a762a93e5e1cba94c7
SIZE (deriving-ocsigen-0.3c.tar.gz) = 61242

View File

@ -0,0 +1,6 @@
Extension to OCaml for deriving functions from type declarations. Includes
derivers for pretty-printing, type-safe marshalling with structure-sharing,
dynamic typing, equality, and more. This is a version of the deriving library
adapted for use with Ocsigen.
WWW: http://github.com/hnrgrgr/deriving