this repo has no description
1opam-version: "2.0"
2maintainer : "Christophe Raffalli <christophe@raffalli.eu>"
3bug-reports : "https://github.com/rlepigre/ocaml-earley/issues"
4authors : [ "Christophe Raffalli <christophe@raffalli.eu>"
5 "Rodolphe Lepigre <rodolphe.lepigre@inria.fr>" ]
6homepage : "https://github.com/rlepigre/ocaml-earley"
7license : "CeCILL-B"
8dev-repo: "git+https://github.com/rlepigre/ocaml-earley.git"
9build: [
10 [make]
11 [make "tests" "TESTS=--full"] {with-test}
12]
13install : [make "install"]
14remove : [make "uninstall"]
15depends: [
16 "ocaml" {>= "4.03.0"}
17 "ocamlbuild" {build}
18 "ocamlfind" {build}
19]
20synopsis: "Earley parser combinator library"
21description: """
22Earley is a parser combinator library base on Earley's algorithm. It
23is intended to be used in conjunction with Earley-OCaml, which is an
24extensible parser for OCaml (distributed separately). It contains a
25syntax extension for OCaml, which allows the definition of parsers
26inside the language.
27
28Authors:
29 - Christophe Raffalli <christophe@raffalli.eu>
30 - Rodolphe Lepigre <rodolphe.lepigre@inria.fr>"""
31url {
32 src:
33 "https://github.com/rlepigre/ocaml-earley/archive/ocaml-earley_1.0.2.tar.gz"
34 checksum: [
35 "sha256=2296f7cb57559014cf620eb790acd6f30b83f40851c656daadb573653572a061"
36 "md5=00a74f5ba5396b520a37220a79817514"
37 ]
38}