this repo has no description
1opam-version: "2.0"
2maintainer: "Etienne Millon <etienne@cryptosense.com>"
3authors: ["Xavier Leroy"]
4homepage: "http://forge.ocamlcore.org/projects/camlzip/"
5bug-reports: "https://forge.ocamlcore.org/tracker/?atid=622&group_id=134"
6dev-repo: "git+https://github.com/xavierleroy/camlzip.git"
7license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
8build: [
9 [make "all"]
10 [make "allopt"]
11]
12remove: [
13 ["ocamlfind" "remove" "zip"]
14 ["ocamlfind" "remove" "camlzip"]
15]
16depends: [
17 "ocaml" {>= "4.02.0" & < "5.0"}
18 "ocamlfind"
19]
20depexts: [
21 ["zlib1g-dev"] {os-family = "debian"}
22 ["zlib-devel"] {os-distribution = "centos"}
23 ["zlib-devel"] {os-distribution = "rhel"}
24 ["zlib-devel"] {os-distribution = "fedora"}
25 ["zlib-dev"] {os-distribution = "alpine"}
26]
27patches: [
28 "fix-install.patch"
29 "build_with_trunk.patch"
30 "no-L.patch" {os = "macos"}
31]
32install: [make "install-findlib"]
33synopsis:
34 "Provides easy access to compressed files in ZIP, GZIP and JAR format"
35flags: light-uninstall
36url {
37 src:
38 "https://download.ocamlcore.org/camlzip/camlzip/1.06/camlzip-1.06.tar.gz"
39 checksum: [
40 "sha256=c83877f9972943e6f2e147cf9715a785da2fc8531e7bed3ab4787043b8f4cf54"
41 "md5=0874be16d02a7165dfc31edc06636e4c"
42 ]
43}
44extra-source "no-L.patch" {
45 src:
46 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlzip/no-L.patch"
47 checksum: [
48 "sha256=cefcc85b797c7ad6a719eca3e62fca1722260a1d68af04af92ef7cf5e5d26ccb"
49 "md5=a87a3ee77f84d745dd2956e34c635cf9"
50 ]
51}
52extra-source "fix-install.patch" {
53 src:
54 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlzip/fix-install.patch.1.06"
55 checksum: [
56 "sha256=608686a8d85821b11e38d38bdabfe098a8e048bb4b1bb9dfc638e7923d60f691"
57 "md5=0d35b1372c52b8de9695212b67a597d7"
58 ]
59}
60extra-source "build_with_trunk.patch" {
61 src:
62 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlzip/build_with_trunk.patch.1.06"
63 checksum: [
64 "sha256=a22c2712b4663ddc2ee03654982eb7ecb13f7bc00b381a14230eabf79c7b42f3"
65 "md5=59df579d4344f758eaffbb7f32645e30"
66 ]
67}