this repo has no description
1opam-version: "2.0"
2synopsis: "The Alt-Ergo SMT prover library"
3description: """
4This is the core library used in the Alt-Ergo SMT solver.
5
6Alt-Ergo is an automatic theorem prover of mathematical formulas. It was developed at LRI, and is now maintained at OCamlPro.
7
8See more details on http://alt-ergo.ocamlpro.com/"""
9maintainer: ["Alt-Ergo developers <alt-ergo@ocamlpro.com>"]
10authors: ["Alt-Ergo developers <alt-ergo@ocamlpro.com>"]
11homepage: "https://alt-ergo.ocamlpro.com/"
12doc: "https://ocamlpro.github.io/alt-ergo"
13bug-reports: "https://github.com/OCamlPro/alt-ergo/issues"
14available: opam-version >= "2.1.0"
15flags: [ avoid-version ]
16depends: [
17 "ocaml" {>= "4.08.0"}
18 "dune" {>= "3.0"}
19 "dune-build-info"
20 "dolmen" {>= "0.9" & < "0.10" }
21 "dolmen_type" {>= "0.9" & < "0.10" }
22 "dolmen_loop" {>= "0.9" & < "0.10" }
23 "ocplib-simplex" {>= "0.5"}
24 "zarith" {>= "1.11"}
25 "seq"
26 "fmt" {>= "0.9.0"}
27 "stdlib-shims"
28 "ppx_blob" {>= "0.7.2"}
29 "camlzip" {>= "1.07"}
30 "odoc" {with-doc}
31]
32conflicts: [
33 "ppxlib" {< "0.30.0"}
34 "result" {< "1.5"}
35]
36build: [
37 ["dune" "subst"] {dev}
38 [
39 "dune"
40 "build"
41 "-p"
42 name
43 "-j"
44 jobs
45 "--promote-install-files=false"
46 "@install"
47 "@runtest" {with-test}
48 "@doc" {with-doc}
49 ]
50 ["dune" "install" "-p" name "--create-install-files" name]
51]
52dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git"
53# This part comes from the template. Please edit alt-ergo-lib.opam.template
54# and not alt-ergo-lib.opam which is generated by dune
55tags: "org:OCamlPro"
56
57license: [
58 "LicenseRef-OCamlpro-Non-Commercial"
59 "Apache-2.0"
60]
61url {
62 src:
63 "https://github.com/OCamlPro/alt-ergo/releases/download/v2.5.0/alt-ergo-2.5.0.tbz"
64 checksum: [
65 "sha256=1545af6fb72e60781649e2f5e01f07daa3df173256ba3327544431bced7cf2f4"
66 "sha512=33ff586e3f191ed74ecf76380b4db8cc5e7edb7554dd24e25dd0323b3b5a58e447b7e82c4e7b78e8704308a448035e84234d335f25ebc933792a2d1e60bca3c6"
67 ]
68}
69x-commit-hash: "d792dfc5944e2bb3aae19d2ec56ffd7e9d35fee5"
70x-maintained: false