package zipc
Install
Dune Dependency
Authors
Maintainers
Sources
sha512=879a44af411488b618edba2881f4431a2a2e57b9c98aa6aa3df41187742cb86ebd7513693cf7c08560ef686b0148ffd80451602a9e8bada0f4de4caae4c31746
Description
Zipc is an in-memory ZIP archive and deflate compression codec. Other compression formats in ZIP archives can be supported by using third-party libraries.
Zipc has no dependencies and no C code. It is distributed under the ISC license.
Homepage: https://erratique.ch/software/zipc
README
Zipc – ZIP archive and deflate codec for OCaml
Zipc is an in-memory ZIP archive and deflate compression codec. Other compression formats in ZIP archives can be supported by using third-party libraries.
Zipc has no dependencies and no C code. It is distributed under the ISC license.
Homepage: https://erratique.ch/software/zipc
Installation
Zipc can be installed with opam
:
opam install zipc
opam install zipc cmdliner # For the zipc tool.
If you don't use opam
consult the opam
file for build instructions.
Documentation
The documentation can be consulted online or via odig doc zipc
.
Questions are welcome but better asked on the OCaml forum than on the issue tracker.
Examples
The zipc
tool operates on ZIP archives with the library.
See also the examples from the quick start and js_of_ocaml
examples in test
.
Acknowledgments
A grant from the OCaml Software Foundation helped to bring the first public release of zipc
.
The deflate compressor and general information about ZIP files benefited from Hans Wennborg's thorough article about Zip files. The deflate decompressor implementation started as a port of Joergen Ibsen's tinf
library.