this repo has no description
1opam-version: "2.0"
2synopsis: "Pretty-printing for Menhir files"
3description: """
4Obelisk is a simple tool which produces pretty-printed output from a Menhir parser file (.mly).
5It is inspired from yacc2latex and is also written in OCaml, but is aimed at supporting features from Menhir instead of only those of ocamlyacc."""
6maintainer: ["Lélio Brun <lelio.brun@inria.fr>"]
7authors: ["Lélio Brun"]
8license: "MIT"
9homepage: "https://github.com/Lelio-Brun/Obelisk"
10doc: "https://github.com/Lelio-Brun/Obelisk/blob/master/README.md"
11bug-reports: "https://github.com/Lelio-Brun/obelisk/issues"
12depends: [
13 "ocaml" {>= "4.08"}
14 "dune" {>= "2.2.0"}
15 "re"
16 "menhir"
17]
18build: [
19 ["dune" "subst"] {dev}
20 [
21 "dune"
22 "build"
23 "-p"
24 name
25 "-j"
26 jobs
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31]
32dev-repo: "git+https://github.com/Lelio-Brun/obelisk.git"
33url {
34 src: "https://github.com/Lelio-Brun/Obelisk/archive/v0.6.0.tar.gz"
35 checksum: [
36 "md5=1494ac4b54ad165d2ddea26a0f54d2dc"
37 "sha512=a911070bb474e75c9332dac208c9916ef6be2f46148cafec9ce9c920f07e782d26796cb2f77ecb7f62247c6f56a53bc34aaf66d37ce5ab6d148e1459dd61a8e0"
38 ]
39}