this repo has no description
1opam-version: "2.0"
2maintainer : "Christian Lindig <lindig@citrix.com>"
3authors : ["Christian Lindig <lindig@citrix.com>"]
4license : "MIT"
5homepage : "https://github.com/lindig/bisect-summary"
6bug-reports : "https://github.com/lindig/bisect-summary/issues"
7dev-repo: "git+https://github.com/lindig/bisect-summary.git"
8build: [
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11]
12install: [
13 ["ocaml" "setup.ml" "-install"]
14]
15remove: [
16 ["ocamlfind" "remove" "bisect-summary"]
17]
18depends: [
19 "ocaml"
20 "bisect_ppx" {< "2.0.0"}
21 "oasis" {build}
22 "ocamlfind" {build}
23]
24synopsis:
25 "bisect-summary - simple analysis of coverage data created by bisect-ppx"
26description: """
27This tool reads the data produced by bisect-ppx-instrumented code at
28runtime and reports the coverate ratio. Unlike bisect-ppx-report, it
29doesn't require access to the source code of the instrumented code and
30the *.pmx files that bisect-ppx created at instrumentation time."""
31flags: light-uninstall
32url {
33 src: "https://github.com/lindig/bisect-summary/archive/0.3.zip"
34 checksum: [
35 "sha256=bac07d86b28fdd95b0bf39eece0b02452164ffbcdd89a3fc69b0dee9ee06da67"
36 "md5=62cfc015ccf1cacf224a32be79265be0"
37 ]
38}