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.
9"""
10maintainer: "virgile.prevosto@cea.fr"
11authors: [
12 "Virgile Robles"
13]
14homepage: "https://frama-c.com/"
15license: "LGPL-2.1-only"
16dev-repo: "git+https://git.frama-c.com/pub/meta.git"
17bug-reports: "https://git.frama-c.com/pub/meta/-/issues"
18tags: [
19 "program verification"
20 "formal specification"
21 "ACSL"
22 "MetACSL"
23]
24
25url {
26 src: "https://git.frama-c.com/pub/meta/uploads/deea5fb23305cdfa62976bec2cbce45c/frama-c-metacsl-0.1.tar.gz"
27 checksum: ["md5=74e2a596816520793abc8c1266057520"
28 "sha256=95c35a9a21591aeb46a6955e7a7104b8cd359f907d35e9d1a1e38c2ed29aa5fb"
29 "sha512=10f317e32afc606390681a7e8091f48cb8141b75947c9f40e7203a30a1b6effe7038a8939f283ef8d69650c4e285865cafae75d3e6992fcc45942e56fcafd699"]
30}
31
32build: [
33 ["autoconf"] {dev}
34 ["./configure"]
35 [make "-j%{jobs}%"]
36]
37
38install: [
39 [make "install"]
40]
41
42depends: [
43 "ocaml" { >= "4.05.0" & ( < "4.08.0~" | >= "4.08.1" ) }
44 "frama-c" { >= "22.0" & < "23.0" }
45 "why3" { >= "1.3.1" }
46]
47
48depopts: [ "conf-swi-prolog" ]
49
50messages: [ "Note that if you wish to use the deduction features of MetAcsl, you must install the conf-swi-prolog package (and swi-prolog itself)" {!conf-swi-prolog:installed} ]