forked from rlepigre/ocaml-earley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearley.opam
27 lines (24 loc) · 982 Bytes
/
earley.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
synopsis: "Parsing library based on Earley Algorithm"
description:
"""
Earley is a parser combinator library base on Earley's algorithm. It
is intended to be used in conjunction with an OCaml syntax extension
which allows the definition of parsers inside the language. There is
also support for writing OCaml syntax extensions in a camlp4 style.
"""
opam-version: "2.0"
maintainer: "Rodolphe Lepigre <[email protected]>"
bug-reports: "https://github.com/rlepigre/ocaml-earley/issues"
homepage: "https://github.com/rlepigre/ocaml-earley"
dev-repo: "git+https://github.com/rlepigre/ocaml-earley.git"
authors: [
"Christophe Raffalli <[email protected]>"
"Rodolphe Lepigre <[email protected]>" ]
license: "CeCILL-B_V1"
doc: "https://rlepigre.github.io/ocaml-earley/"
depends: [
"ocaml" { >= "4.03.0" & <= "4.07.1" }
"dune" { build & >= "1.2.0" }
]
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]