this repo has no description
1opam-version: "2.0"
2maintainer: "Christopher Zimmermann <christopher@gmerlin.de>"
3authors: "Christopher Zimmermann <christopher@gmerlin.de>"
4homepage: "https://github.com/madroach/ocaml-zlib"
5dev-repo: "git+https://github.com/madroach/ocaml-zlib.git"
6bug-reports: "https://github.com/madroach/ocaml-zlib/issues"
7license: "ISC"
8build: [
9 ["dune" "build" "-p" name]
10 ["dune" "build" "@doc" "-p" name] {with-doc}
11 ["dune" "runtest" "-p" name] {ocaml:version >= "4.06" & with-test}
12]
13depends: [
14 "ocaml"
15 "dune" {>= "1.1"}
16 "base-bigarray"
17 "conf-zlib"
18 "odoc" {with-doc}
19]
20synopsis: "Bindings to the zlib compression library"
21description: """
22providing deflate compression with or without zlib or gzip headers.
23
24This library uses bigarrays as buffers and can therefore release the OCaml
25runtime during (de)compression, allowing other OCaml threads to continue."""
26url {
27 src: "https://github.com/madroach/ocaml-zlib/archive/0.8.tar.gz"
28 checksum: [
29 "sha256=fe1c1ef005a40e3bd70cc2b3e64c716ca85a30cc1062fbc7543de5a1d5d9b42f"
30 "sha512=9e03b4cb87a8eb4418a61cc7b84001ea3f353450b72eed5e77833d1253d3ee9706f817ae32898c5a6249a1fb0585c64d63319095fe150d59cb93611d353f55ab"
31 ]
32}