this repo has no description
1opam-version: "2.0"
2synopsis: "1D histogram sketching"
3description:
4 "Bentov implements an algorithm which approximates a 1D histogram as data is streamed over it."
5maintainer: ["mika@illouz.net"]
6authors: ["Mika Illouz"]
7license: "BSD"
8homepage: "https://github.com/barko/bentov"
9doc: "https://barko.github.io/bentov/"
10bug-reports: "https://github.com/barko/bentov/issues"
11depends: [
12 "dune" {>= "2.5"}
13 "cmdliner" {>= "1.0.4" & < "2.0.0"}
14 "ocaml" {>= "4.08.0"}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@doc" {with-doc}
27 ]
28]
29
30dev-repo: "git+https://github.com/barko/bentov.git"
31url {
32 src: "https://github.com/barko/bentov/releases/download/1/bentov-1.tbz"
33 checksum: [
34 "sha256=9dd08f88b554ee5d8127f683cd4530773763091d692c86b7ddd4794a0fbad8e3"
35 "sha512=622efa18f1a5a3c2968953570ac30d37d9871e011c7d340cc11d3ced35ee2f8327e8bd1016e964e15536a4ff0c500a5b76ebb525d35a52cc81d03b997f45464f"
36 ]
37}