-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpml.opam
26 lines (24 loc) · 824 Bytes
/
pml.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
synopsis: "ML-like language and proof assistant with classical logic."
description:
"""
PML (or “Polynesia ML”) is an ML-like language, similar to OCaml, in
which equational properties of programs can be specified and proved.
"""
opam-version: "2.0"
maintainer: "[email protected]"
bug-reports: "https://github.com/rlepigre/pml/issues"
homepage: "https://github.com/rlepigre/pml"
dev-repo: "git+https://github.com/rlepigre/pml.git"
authors: [
"Rodolphe Lepigre <[email protected]>"
"Christophe Raffalli <[email protected]>"
]
license: "MIT"
depends: [
"ocaml" { >= "4.04.0" }
"dune" { build & >= "1.3.0" }
"bindlib" { >= "5.0.0" }
"earley" { >= "2.0.0" }
]
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]