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"
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:
35 "https://github.com/Lelio-Brun/Obelisk/releases/download/v0.5.0/obelisk-v0.5.0.tbz"
36 checksum: [
37 "sha256=9b7a099806d0460bd178262441c7ed7910455563ee35bc387881a8a935320905"
38 "sha512=a6b95053e16a9e7f9c7cf383902284ee2a9f13fe82069a01f6274544fa2b50f6581e9a00eb813eab1c9c74d681ca3b2c8031831c568ddc62727cb1c5b33c11cd"
39 ]
40}