-
Notifications
You must be signed in to change notification settings - Fork 4
/
obelisk.opam
34 lines (34 loc) · 986 Bytes
/
obelisk.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
31
32
33
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.7.0"
synopsis: "Pretty-printing for Menhir files"
description: """
Obelisk is a simple tool which produces pretty-printed output from a Menhir parser file (.mly).
It is inspired from yacc2latex and is also written in OCaml, but is aimed at supporting features from Menhir instead of only those of ocamlyacc."""
maintainer: ["Lélio Brun <lb@leliobrun.net>"]
authors: ["Lélio Brun"]
license: "MIT"
homepage: "https://github.com/Lelio-Brun/Obelisk"
doc: "https://github.com/Lelio-Brun/Obelisk/blob/master/README.md"
bug-reports: "https://github.com/Lelio-Brun/obelisk/issues"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.2.0"}
"menhir" {>= "20190613"}
"re"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/Lelio-Brun/obelisk.git"