this repo has no description
1opam-version: "2.0" 2maintainer: "alt-ergo@ocamlpro.com" 3authors: "Alt-Ergo developers" 4license: "OCamlPro Non-Commercial License" 5homepage: "http://alt-ergo.ocamlpro.com/" 6bug-reports: "https://github.com/OCamlPro/alt-ergo/issues" 7 8build: 9[ 10 ["./configure" "-prefix" "%{prefix}%"] 11 [make "satML"] 12] 13 14install: 15[ 16 [make "install-satML" "MANDIR=%{man}%/man1"] 17] 18 19remove: 20[ 21 ["rm" "%{prefix}%/lib/alt-ergo/plugins/satML-plugin.cmxs"] 22] 23 24depends: [ 25 "ocaml" {>= "4.01.0"} 26 "zarith" {>= "1.4"} 27 "camlzip" 28 "ocplib-simplex" {= "0.3"} 29 "alt-ergo" {= "1.30"} 30] 31synopsis: "Alt-Ergo, an SMT Solver for Software Verification: satML Plugin" 32description: """ 33Alt-Ergo is an automatic prover of mathematical formulas used behind software verification tools such as Frama-C, SPARK, Why3, Atelier-B and Caveat. 34 35This package provides the satML plugin for Alt-Ergo: an alternative SAT solver based on miniSAT. 36 37usage: alt-ergo -sat-plugin satML-plugin.cmxs [other-options] <file.why>""" 38dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git" 39flags: light-uninstall 40url { 41 src: "http://alt-ergo.ocamlpro.com/http/alt-ergo-1.30/alt-ergo-1.30.tar.gz" 42 checksum: [ 43 "sha256=2fd8428323efeafe1f0a92aeaf98242f4668784567a25eac230675451653b708" 44 "md5=c7100ebd625fbd7d3e5247dbac689748" 45 ] 46}