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"]
10authors: ["Alt-Ergo developers"]
11homepage: "https://alt-ergo.ocamlpro.com/"
12doc: "https://ocamlpro.github.io/alt-ergo"
13bug-reports: "https://github.com/OCamlPro/alt-ergo/issues"
14depends: [
15 "ocaml" {>= "4.05.0"}
16 "dune" {>= "2.0" & < "3.0"}
17 "dune-configurator"
18 "num"
19 "ocplib-simplex" {>= "0.4" & < "0.5"}
20 "zarith" {>= "1.4"}
21 "seq"
22 "stdlib-shims"
23 "odoc" {with-doc}
24]
25dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git"
26# This part comes from the template. Please edit alt-ergo.opam.template
27# and not alt-ergo-lib.opam which is generated by dune
28
29license: [
30 "LicenseRef-OCamlPro-Non-Commercial-Purpose-License-Version-1"
31]
32
33build: [
34 ["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
35 ["dune" "subst"] {dev}
36 ["dune" "build" "-p" name "-j" jobs]
37]
38url {
39 src: "https://github.com/OCamlPro/alt-ergo/archive/2.4.1.tar.gz"
40 checksum: [
41 "md5=35d6c6f3fa43bcd10fe7f524b1eb59ca"
42 "sha512=c3eee41d3c588ca89c2a1eebe9f10914ef647743b58fb562b682172cf6b6bdeb0920ebbba8a850820c0cb53bad0260f11b82fe71f00830ea9b33f5bb5d4fd048"
43 ]
44}