-
Notifications
You must be signed in to change notification settings - Fork 20
/
tlapm.opam
61 lines (61 loc) · 1.29 KB
/
tlapm.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "TLA+ Proof Manager"
description: "TLA+ Proof Manager"
maintainer: [
"Kaustuv Chaudhuri"
"Denis Cousineau"
"Damien Doligez"
"Leslie Lamport"
"Tomer Libal"
"Stephan Merz"
"Jean-Baptiste Tristan"
"Hernan Vanzetto"
]
authors: [
"Kaustuv Chaudhuri"
"Denis Cousineau"
"Damien Doligez"
"Leslie Lamport"
"Tomer Libal"
"Stephan Merz"
"Jean-Baptiste Tristan"
"Hernan Vanzetto"
]
license: "BSD-2-Clause"
homepage: "https://github.com/tlaplus/tlapm"
bug-reports: "https://github.com/tlaplus/tlapm/issues"
depends: [
"dune" {>= "3.15"}
"ocaml"
"dune-site"
"dune-build-info"
"sexplib"
"cmdliner"
"camlzip"
"re2"
"ppx_inline_test"
"ppx_assert"
"ppx_deriving"
"ounit2"
"odoc" {with-doc}
]
depopts: ["lsp" "eio_main"]
dev-repo: "git+https://github.com/tlaplus/tlapm.git"
build: [ # This is to override the build step, add the invocation of `Makefile.post-install`.
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
["%{make}%" "-C" "%{lib}%/tlapm" "-f" "Makefile.post-install"]
]