package zipc
Install
Dune Dependency
Authors
Maintainers
Sources
sha512=ac1ff84abdc733e400c4bc3c56f09fe5792c96fc236d254ded97c40b2f2c9b521f34288e6c721a096e5acb0f15c73ec5852b57166985d3f48257b45e8587ab8a
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.