this repo has no description
1opam-version: "2.0"
2synopsis: "The Alt-Ergo SMT prover parser library"
3description: """
4This is the parser 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"}
17 "alt-ergo-lib" {= version}
18 "psmt2-frontend" {>= "0.3"}
19 "camlzip" {>= "1.07"}
20 "menhir"
21 "stdlib-shims"
22 "odoc" {with-doc}
23]
24dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git"
25# This part comes from the template. Please edit alt-ergo.opam.template
26# and not alt-ergo-parsers.opam which is generated by dune
27
28license: [
29 "LicenseRef-OCamlPro-Non-Commercial-Purpose-License-Version-1"
30]
31
32build: [
33 ["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
34 ["dune" "subst"] {dev}
35 ["dune" "build" "-p" name "-j" jobs]
36]
37url {
38 src: "https://github.com/OCamlPro/alt-ergo/archive/2.4.1.tar.gz"
39 checksum: [
40 "md5=35d6c6f3fa43bcd10fe7f524b1eb59ca"
41 "sha512=c3eee41d3c588ca89c2a1eebe9f10914ef647743b58fb562b682172cf6b6bdeb0920ebbba8a850820c0cb53bad0260f11b82fe71f00830ea9b33f5bb5d4fd048"
42 ]
43}