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.1.tar.gz" 34 checksum: [ 35 "sha256=5267b41986c9250906f9c81424ca4fdea4c3fa71958015a663acc10d974ad33c" 36 "md5=b86117be1161ae3a831b45d7d1087184" 37 ] 38}