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.1.0.tbz" 45 checksum: 46 "sha512=879a44af411488b618edba2881f4431a2a2e57b9c98aa6aa3df41187742cb86ebd7513693cf7c08560ef686b0148ffd80451602a9e8bada0f4de4caae4c31746" 47}