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 ] {ocaml:version < "5.0"}
17
18depends: [
19 "ocaml" {>= "4.07.0"}
20 "dune" {>= "2.8.0"}
21 "base-bytes"
22 "bigarray-compat"
23 "cmdliner" {>= "1.0.0"}
24 "optint" {>= "0.1.0"}
25 "checkseum" {>= "0.2.0"}
26 "bigstringaf" {with-test}
27 "alcotest" {with-test}
28 "ctypes" {with-test & >= "0.18.0"}
29 "fmt" {with-test}
30 "camlzip" {>= "1.10" & with-test}
31 "base64" {>= "3.0.0" & with-test}
32 "crowbar" {with-test & >= "0.2"}
33 "rresult" {with-test}
34]
35x-commit-hash: "fcbc448e253fcb70b65fb58b5a692468f17a243e"
36url {
37 src:
38 "https://github.com/mirage/decompress/releases/download/v1.4.1/decompress-v1.4.1.tbz"
39 checksum: [
40 "sha256=0130ea6acb61b0a25393fa23148e116d7a17c77558196f7abddaee9e05a1d7a8"
41 "sha512=1668df538fba7c96574146a18fcbeef5200ea0e36110ec94c9b9924e368f465447702029fdb00d2749ca55081169b0e7c74e2f0887e4367ec580633e1e2a1c6c"
42 ]
43}
44available: [ arch != "s390x" ]