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"}
17 "dune-configurator"
18 "num"
19 "ocplib-simplex" {>= "0.4" & < "0.5"}
20 "zarith" {>= "1.5"}
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
28tags: "org:OCamlPro"
29
30license: [
31 "LicenseRef-OCamlPro-Non-Commercial-Purpose-License-Version-1"
32]
33
34build: [
35 ["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
36 ["dune" "subst"] {dev}
37 ["dune" "build" "-p" name "-j" jobs]
38]
39url {
40 src: "https://github.com/OCamlPro/alt-ergo/archive/refs/tags/2.4.2.tar.gz"
41 checksum: [
42 "md5=c47327ae132c860890c820bfd5d49d51"
43 "sha512=61ae181ccd60a49f833ea79bbd5184a46f8eef24e7fe1169b15e905ed86584bdbe993ef86c203d5bfc3d79961024f96af0e4e623dc15479aa9538648291c9a75"
44 ]
45}
46
47patches:["version_update.patch"]
48extra-source "version_update.patch" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/alt-ergo-lib/version_update.patch"
51 checksum: [
52 "sha256=a695bd41ff9334dad5fb0e36adac63b07e6e091b3ad67258ebe45e52874dea7f"
53 "md5=8944da319134df09dc733a769504867f"
54 ]
55}