this repo has no description
1opam-version: "2.0"
2synopsis: "Luncov plugin of Frama-C, part of the LTest suite "
3description:"""
4Luncov is a plugin that attempts to identify unreachable and/or redundant
5tests objectives, represented in the code by labels and hyperlabels, as
6defined in the LTest family of Frama-C plug-ins.
7Other plug-ins in LTest include:
8- Lannotate, for introducing (hyper)labels according to various criteria
9- Lreplay, for executing a test suite and computing its coverage status
10"""
11maintainer: "virgile.prevosto@cea.fr"
12authors: [
13 "Robin David"
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/luncov.git"
21bug-reports: "https://git.frama-c.com/pub/luncov/-/issues"
22tags: [
23 "software testing"
24 "Frama-C"
25 "LTest"
26]
27
28url {
29 src: "https://git.frama-c.com/pub/ltest/luncov/-/archive/0.2/luncov-0.2.tar.bz2"
30 checksum: ["sha512=d3a62132189cd0100a768518c34c04a2401f824ac67f8e130744fbdd1a13ed4cc9455d0ad9f591df4937516dd8cbf4ccd8491b4a803b9e382361c45a3a95ee79"]
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]