forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rodolphe Lepigre
committed
Feb 13, 2018
1 parent
f5ddfba
commit d4d4640
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Earley parser combinator library | ||
|
||
Earley is a parser combinator library base on Earley's algorithm. It | ||
is intended to be used in conjunction with Earley-OCaml, which is an | ||
extensible parser for OCaml (distributed separately). It contains a | ||
syntax extension for OCaml, which allows the definition of parsers | ||
inside the language. | ||
|
||
Authors: | ||
- Christophe Raffalli <christophe@raffalli.eu> | ||
- Rodolphe Lepigre <rodolphe.lepigre@inria.fr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
opam-version: "1.2" | ||
available : [ ocaml-version >= "4.03.0" ] | ||
maintainer : "Christophe Raffalli <christophe@raffalli.eu>" | ||
bug-reports : "https://github.com/rlepigre/ocaml-earley/issues" | ||
authors : [ "Christophe Raffalli <christophe@raffalli.eu>" | ||
"Rodolphe Lepigre <rodolphe.lepigre@inria.fr>" ] | ||
homepage : "https://rlepigre.github.io/ocaml-earley/" | ||
license : "CeCILL-B_V1" | ||
dev-repo : "https://github.com/rlepigre/ocaml-earley.git" | ||
build : [make] | ||
build-test : [make "tests" "TESTS=--full"] | ||
install : [make "install"] | ||
remove : [make "uninstall"] | ||
depends : [ "ocamlbuild" {build} | ||
"ocamlfind" {build} ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://github.com/rlepigre/ocaml-earley/archive/ocaml-earley_1.0.1.tar.gz" | ||
checksum: "b86117be1161ae3a831b45d7d1087184" |