this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4homepage: "https://github.com/mirage/decompress"
5bug-reports: "https://github.com/mirage/decompress/issues"
6dev-repo: "git+https://github.com/mirage/decompress.git"
7doc: "https://mirage.github.io/decompress/"
8license: "MIT"
9synopsis: "Implementation of Zlib and GZip in OCaml"
10description: """Decompress is an implementation of Zlib and GZip in OCaml
11
12It provides a pure non-blocking interface to inflate and deflate data flow.
13"""
14
15build: [ "dune" "build" "-p" name "-j" jobs ]
16run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
17
18depends: [
19 "ocaml" {>= "4.07.0"}
20 "dune" {>= "1.0"}
21 "base-bytes"
22 "bigarray-compat"
23 "optint" {>= "0.0.4"}
24 "checkseum" {>= "0.2.0"}
25 "bigstringaf" {with-test}
26 "alcotest" {with-test}
27 "hxd" {with-test & < "0.3.0"}
28 "camlzip" {>= "1.10" & with-test}
29 "base64" {>= "3.0.0" & with-test}
30]
31url {
32 src:
33 "https://github.com/mirage/decompress/releases/download/v1.2.0/decompress-v1.2.0.tbz"
34 checksum: [
35 "sha256=51983d4497ccb27c253e7464b03d38544aad51e0e7d537e405f4df6954c27ab0"
36 "sha512=17c7e3dc79b7cedaf649c208874a50a810002c71d061c133239b9813a9dfe424ba303a968ba68c728862bb20ceaa23465097334bc16b819317390d01c2f91f89"
37 ]
38}
39available: [ arch != "s390x" ]