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 in OCaml" 10description: """Decompress is an implementation of Zlib in OCaml 11 12It provides a pure non-blocking interface to inflate and deflate data flow. 13""" 14 15build: [ 16 [ "dune" "subst" ] 17 [ "dune" "build" "-p" name "-j" jobs ] 18 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test & ocaml:version < "4.08.0"} 19] 20 21depends: [ 22 "ocaml" {>= "4.03.0"} 23 "dune" 24 "base-bytes" 25 "base-bigarray" 26 "optint" 27 "checkseum" 28 "camlzip" {with-test & >= "1.07"} 29 "re" {with-test & >= "1.7.2"} 30 "alcotest" {with-test} 31 "cmdliner" 32] 33url { 34 src: 35 "https://github.com/mirage/decompress/releases/download/v0.8.1/decompress-v0.8.1.tbz" 36 checksum: [ 37 "sha256=903b0926fe2380caf156fcdefa38bc48794f7fcf7d6befd1719aab3f8c0f1188" 38 "md5=6c600b0188516d405510cd95d8d82481" 39 ] 40} 41available: [ arch != "s390x" ]