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.0.4"}
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]
33x-commit-hash: "78635883950afd9c1b0b84977fda07301a07679a"
34url {
35 src:
36 "https://github.com/mirage/decompress/releases/download/v1.3.0/decompress-v1.3.0.tbz"
37 checksum: [
38 "sha256=de149896939be13fedec46a4581121d5ab74850a2241d08e6aa8ae4bb18c52c4"
39 "sha512=324b4c2daef6ddaae2d28edcdadec8e29ebcc408eed2fed3fe4a3cb298cd78864d9ac939ae794c6ff8d9f5233a7cfa6feee62aa683ed3eb73f53ab8ea74cbffb"
40 ]
41}
42available: [ arch != "s390x" ]