-
Notifications
You must be signed in to change notification settings - Fork 3
/
zlib.opam
26 lines (25 loc) · 896 Bytes
/
zlib.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
opam-version: "2.0"
maintainer: "Christopher Zimmermann <[email protected]>"
authors: "Christopher Zimmermann <[email protected]>"
homepage: "https://github.com/madroach/ocaml-zlib"
dev-repo: "git+https://github.com/madroach/ocaml-zlib.git"
bug-reports: "https://github.com/madroach/ocaml-zlib/issues"
tags: [ "clib:z" "compression" ]
license: "ISC"
build: [
["dune" "build" "-p" "zlib"]
["dune" "build" "@doc" "-p" "zlib"] {with-doc}
]
run-test: [["dune" "runtest" "-p" "zlib"] {ocaml:version >= "4.06"}]
depends: [
"ocaml"
"dune"
"base-bigarray"
"conf-zlib"
"odoc" {with-doc}
]
synopsis: "Bindings for the zlib compression library"
description: """
providing deflate compression with or without zlib or gzip headers.
This library uses bigarrays as buffers and can therefore release the OCaml
runtime during (de)compression, allowing other OCaml threads to continue."""