this repo has no description
1opam-version: "2.0" 2synopsis: "MetAcsl plugin of Frama-C for writing pervasives properties" 3description: """\ 4MetAcsl let users write properties that need to be checked at particular 5contexts (e.g. each time a location is written to inside a given set 6of functions). It will then generate all the corresponding ACSL 7annotations, leaving it to analysis plug-ins (e.g. WP) to prove the 8resulting clauses.""" 9maintainer: "Virgile.Prevosto@cea.fr" 10authors: "Virgile Robles" 11license: "LGPL-2.1-only" 12tags: [ 13 "program verification" 14 "formal specification" 15 "C" 16 "plugins" 17 "ACSL" 18 "MetACSL" 19] 20homepage: "https://frama-c.com/" 21bug-reports: "https://git.frama-c.com/pub/meta/-/issues" 22depends: [ 23 "dune" {>= "3.2"} 24 "ocaml" {>= "4.08.1"} 25 "frama-c" {>= "26.0~" & < "27.0~"} 26 "odoc" {with-doc} 27] 28depopts: [ 29 "conf-swi-prolog" 30 "why3" {>= "1.3.1"} 31] 32build: [ 33 ["dune" "subst"] {dev} 34 [ 35 "dune" 36 "build" 37 "-p" 38 name 39 "-j" 40 jobs 41 "--promote-install-files=false" 42 "@install" 43 "@runtest" {with-test} 44 "@doc" {with-doc} 45 ] 46 ["dune" "install" "-p" name "--create-install-files" name] 47] 48messages: 49 "Note that if you wish to use the deduction features of MetAcsl, you must install the conf-swi-prolog package (and swi-prolog itself)" 50 {!conf-swi-prolog:installed} 51dev-repo: "git+https://git.frama-c.com/pub/meta.git" 52url { 53 src: "https://git.frama-c.com/pub/meta/-/archive/0.4/meta-0.4.tar.gz" 54 checksum: [ 55 "md5=e8e8feff1a13cdcb505d379672bbd9a9" 56 "sha512=83a51b32d84a7ade48da6f1e6a232fb4f22abebe6aae29726d46e0d35eb74230dcb649a3474a37699d3a60687a7a6916158ecc74bbe998449227989d6b0080f4" 57 ] 58}