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.4"}
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
27tags: "org:OCamlPro"
28
29license: [
30 "LicenseRef-OCamlPro-Non-Commercial-Purpose-License-Version-1"
31]
32
33build: [
34 ["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--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/refs/tags/2.4.2.tar.gz"
40 checksum: [
41 "md5=c47327ae132c860890c820bfd5d49d51"
42 "sha512=61ae181ccd60a49f833ea79bbd5184a46f8eef24e7fe1169b15e905ed86584bdbe993ef86c203d5bfc3d79961024f96af0e4e623dc15479aa9538648291c9a75"
43 ]
44}
45
46patches:["version_update.patch"]
47extra-source "version_update.patch" {
48 src:
49 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/alt-ergo-parsers/version_update.patch"
50 checksum: [
51 "sha256=a695bd41ff9334dad5fb0e36adac63b07e6e091b3ad67258ebe45e52874dea7f"
52 "md5=8944da319134df09dc733a769504867f"
53 ]
54}