-
Notifications
You must be signed in to change notification settings - Fork 0
/
meg.opam
30 lines (29 loc) · 810 Bytes
/
meg.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
29
30
opam-version: "2.0"
version: "0.1"
maintainer: "cakemanny"
authors: ["cakemanny"]
homepage: "https://github.com/cakemanny/meg"
bug-reports: "https://github.com/cakemanny/meg/issues"
dev-repo: "git+https://github.com/cakemanny/meg.git"
license: "MIT"
depends: [
"ocaml" {>= "4.06.1"}
"dune" {>= "1.6"}
"menhir"
"stringext"
"ppx_deriving" {with-test}
]
build: [
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest"]
]
synopsis: "An OCaml implementation of a PEG parser generator"
description: """
meg is an OCaml implementation of a
[PEG](https://pdos.csail.mit.edu/papers/parsing%3Apopl04.pdf) based parser
generator.
It's based heavily on \\_why's [greg](https://github.com/whymirror/greg)
See samples/desk_calc.peg in repo for details on the grammar specifics
"""