Skip to content

Commit 40b0040

Browse files
committed
Camlzip 1.12
- Add full support for ZIP64 archives - Fix memory leak when a `Zlib.stream` is finalized and `Zlib.deflate_end` / `Zlib.inflate_end` was not called before
1 parent ca7f74d commit 40b0040

File tree

1 file changed

+27
-0
lines changed
  • packages/camlzip/camlzip.1.12

1 file changed

+27
-0
lines changed

packages/camlzip/camlzip.1.12/opam

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Accessing compressed files in ZIP, GZIP and JAR format"
4+
description:
5+
"The Camlzip library provides easy access to compressed files in ZIP and GZIP format, as well as to Java JAR files. It provides functions for reading from and writing to compressed files in these formats."
6+
maintainer: ["Xavier Leroy <[email protected]>"]
7+
authors: ["Xavier Leroy"]
8+
homepage: "https://github.com/xavierleroy/camlzip"
9+
bug-reports: "https://github.com/xavierleroy/camlzip/issues"
10+
dev-repo: "git+https://github.com/xavierleroy/camlzip.git"
11+
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
12+
build: [
13+
[make "all"]
14+
]
15+
install: [make "install"]
16+
depends: [
17+
"ocaml" {>= "4.07.0"}
18+
"ocamlfind" {build}
19+
"conf-zlib"
20+
]
21+
url {
22+
src: "https://github.com/xavierleroy/camlzip/archive/rel112.tar.gz"
23+
checksum: [
24+
"sha256=639d3796a506e762f41bc5e513f3ea0ab56b79bd512446fd68cff1f4201d3821"
25+
"sha512=467c82a253440caf3d8485c949c4717b77dfdeb38ee474278be8e011ed3cd563fdcf436bc262e2c88fd27b44306f70d48808f0d001b3f62ab4c87010af61f76f"
26+
]
27+
}

0 commit comments

Comments
 (0)