-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathearley.opam
28 lines (25 loc) · 925 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
28
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.
"""
opam-version: "2.0"
maintainer: "Rodolphe Lepigre <lepigre@mpi-sws.org>"
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 <christophe@raffalli.eu>"
"Rodolphe Lepigre <lepigre@mpi-sws.org>" ]
license: "CeCILL-B_V1"
doc: "https://rlepigre.github.io/ocaml-earley/"
depends: [
"ocaml" { >= "4.07.0" }
"dune" { >= "2.7.0" }
"stdlib-shims" { >= "0.1.0" }
"odoc" { with-doc }
]
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]