this repo has no description
1opam-version: "2.0"
2maintainer: "gabriel.scherer@gmail.com"
3authors: ["Xavier Clerc"]
4homepage: "http://bisect.x9c.fr/"
5bug-reports: "https://github.com/gasche/bisect/issues"
6dev-repo: "git+https://github.com/gasche/bisect.git"
7license: "GPL-3.0-only"
8build: [
9 ["sh" "configure" "-ocaml-prefix" prefix "-ocamlfind" "%{bin}%/ocamlfind"]
10 [make "all"]
11]
12install: [make "install"]
13remove: [["ocamlfind" "remove" "bisect"]]
14depends: [
15 "ocaml" {>= "4.02.0" & < "5.0"}
16 "ocamlfind"
17 "camlp4"
18 "ocamlbuild" {build}
19]
20synopsis: "Code coverage tool for the OCaml language (deprecated)"
21description: """
22Bisect is deprecated in favor of package bisect_ppx.
23
24Bisect is a code coverage tool for the OCaml language. It is a
25camlp4-based tool that allows to instrument your application before
26running tests. After application execution, it is possible to generate
27a report in HTML format that is the replica of the application source
28code annotated with code coverage information."""
29flags: light-uninstall
30url {
31 src: "https://github.com/gasche/bisect/archive/1.3.1.tar.gz"
32 checksum: [
33 "sha256=bd5e2a3deefd0dee9b5ee3593b21ceb09cd7c3cabc4f00d630cbc532ef75c75c"
34 "md5=fd0c2d163e4847df075d87fa9bb42b00"
35 ]
36}
37extra-source "bisect.install" {
38 src:
39 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/bisect/bisect.install"
40 checksum: [
41 "sha256=4d7858452281e94f48ff9708324c6a7bc9a0be4f840e2472cf7002df25acf671"
42 "md5=2106aa627796b3e457d35f1100295f27"
43 ]
44}