this repo has no description
1opam-version: "2.0"
2synopsis: "ZIP archive and deflate codec for OCaml"
3description: """\
4Zipc is an in-memory [ZIP archive] and [deflate] compression
5codec. Other compression formats in ZIP archives can be supported by
6using third-party libraries.
7
8Zipc has no dependencies and no C code. It is distributed under the
9ISC license.
10
11[ZIP archive]: https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT
12[deflate]: https://www.rfc-editor.org/rfc/rfc1951
13
14Homepage: <https://erratique.ch/software/zipc>"""
15maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
16authors: "The zipc programmers"
17license: "ISC"
18tags: ["codec" "zip" "deflate" "zlib" "org:erratique"]
19homepage: "https://erratique.ch/software/zipc"
20doc: "https://erratique.ch/software/zipc/doc"
21bug-reports: "https://github.com/dbuenzli/zipc/issues"
22depends: [
23 "ocaml" {>= "4.14.0"}
24 "ocamlfind" {build}
25 "ocamlbuild" {build}
26 "topkg" {build & >= "1.0.3"}
27 "b0" {dev & with-test}
28]
29depopts: ["cmdliner"]
30conflicts: [
31 "cmdliner" {< "1.1.0"}
32]
33build: [
34 "ocaml"
35 "pkg/pkg.ml"
36 "build"
37 "--dev-pkg"
38 "%{dev}%"
39 "--with-cmdliner"
40 "%{cmdliner:installed}%"
41]
42dev-repo: "git+https://erratique.ch/repos/zipc.git"
43url {
44 src: "https://erratique.ch/software/zipc/releases/zipc-0.2.0.tbz"
45 checksum:
46 "sha512=ac1ff84abdc733e400c4bc3c56f09fe5792c96fc236d254ded97c40b2f2c9b521f34288e6c721a096e5acb0f15c73ec5852b57166985d3f48257b45e8587ab8a"
47}
48x-maintenance-intent: ["(latest)"]