this repo has no description
1opam-version: "2.0" 2synopsis: "Lannotate plugin of Frama-C, part of the LTest suite " 3description:""" 4Lannotate is a plugin that introduces labels and hyperlabels formalizing 5test objectives corresponding to the coverage criteria selected by the user. 6It is part of LTest, a set of plug-in dedicated to managing test coverage. 7Other plug-ins in LTest include: 8- Luncov, for detecting polluting (infeasible or redundant) objectives 9- Lreplay, for executing a test suite and computing its coverage status 10""" 11maintainer: "virgile.prevosto@cea.fr" 12authors: [ 13 "Omar Chebaro" 14 "Mickaël Delahaye" 15 "Michael Marcozzi" 16 "Thibault Martin" 17] 18homepage: "https://frama-c.com/" 19license: "LGPL-2.1-only" 20dev-repo: "git+https://git.frama-c.com/pub/lannotate.git" 21bug-reports: "https://git.frama-c.com/pub/lannotate/-/issues" 22tags: [ 23 "software testing" 24 "Frama-C" 25 "LTest" 26] 27 28url { 29 src: "https://git.frama-c.com/pub/ltest/lannotate/-/archive/0.2/lannotate-0.2.tar.bz2" 30 checksum: [ "sha512=309f525b687cef35334fca059ce2442d4b1d970f577a5f4bf57402317d28dd97d75edc701978a8bb0c2d9a4df19e50a9cc89b698868d36e446f87f71e43a64e8" ] 31} 32 33build: [ 34 ["autoconf"] 35 ["./configure"] 36 [make "-j%{jobs}%"] 37] 38 39install: [ 40 [make "install"] 41] 42 43depends: [ 44 "conf-autoconf" 45 "ocaml" { >= "4.08.1" } 46 "frama-c" { >= "25.0" & < "26.0~" } 47]