this repo has no description
1opam-version: "2.0" 2maintainer: "guillaume.melquiond@inria.fr" 3authors: [ 4 "François Bobot" 5 "Jean-Christophe Filliâtre" 6 "Claude Marché" 7 "Guillaume Melquiond" 8 "Andrei Paskevich" 9] 10 11homepage: "http://why3.lri.fr/" 12license: "LGPL-2.1-only" 13doc: "http://why3.lri.fr/doc/" 14bug-reports: "https://gitlab.inria.fr/why3/why3/issues" 15dev-repo: "git+https://gitlab.inria.fr/why3/why3.git" 16tags: [ 17 "deductive" 18 "program verification" 19 "formal specification" 20 "automated theorem prover" 21 "interactive theorem prover" 22] 23build: [ 24 ["./configure" 25 "--prefix" prefix 26 "--disable-why3-lib" 27 "--disable-frama-c" 28 "--disable-coq-libs" 29 "--disable-js-of-ocaml"] 30 [make "-j%{jobs}%" "ide"] 31] 32 33install: [make "install-ide"] 34 35remove: [ 36 ["rm" "-f" "%{lib}%/why3/commands/why3ide"] 37 ["rm" "-rf" "%{share}%/why3/images"] 38] 39 40flags: [ light-uninstall ] 41 42depends: [ 43 "ocaml" {>= "4.02.3"} 44 "ocamlfind" {build} 45 "why3" {= "1.0.0"} 46 "lablgtk" 47 "conf-gtksourceview" 48] 49conflicts: [ 50 "lablgtk" {< "2.14.2"} 51] 52synopsis: "Why3 environment for deductive program verification" 53description: """ 54Why3 provides a rich language for specification and programming, called 55WhyML, and relies on external theorem provers, both automated and 56interactive, to discharge verification conditions. Why3 comes with a 57standard library of logical theories (integer and real arithmetic, 58Boolean operations, sets and maps, etc.) and basic programming data 59structures (arrays, queues, hash tables, etc.). A user can write WhyML 60programs directly and get correct-by-construction OCaml programs 61through an automated extraction mechanism. WhyML is also used as an 62intermediate language for the verification of C, Java, or Ada 63programs. 64 65Why3 is a complete reimplementation of the former Why platform. Among 66the new features are: numerous extensions to the input language, a new 67architecture for calling external provers, and a well-designed API, 68allowing to use Why3 as a software library. An important emphasis is 69put on modularity and genericity, giving the end user a possibility to 70easily reuse Why3 formalizations or to add support for a new external 71prover if wanted. 72 73This package provides an IDE for Why3.""" 74url { 75 src: "https://why3.gitlabpages.inria.fr/releases/why3-1.0.0.tar.gz" 76 checksum: [ 77 "sha256=b65f4c1661ac8a6240778e6fa553c46098a26d029b02e5cf0e05b0c0630300a2" 78 "md5=3477ce6b826bbba1562117239f0e9f81" 79 ] 80}