-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopam
43 lines (40 loc) · 1.17 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
opam-version: "2.0"
name: "zipc"
synopsis: "ZIP archive and deflate codec for OCaml"
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.
[ZIP archive]: https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT
[deflate]: https://www.rfc-editor.org/rfc/rfc1951
Homepage: <https://erratique.ch/software/zipc>"""
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
authors: "The zipc programmers"
license: "ISC"
tags: ["codec" "zip" "deflate" "zlib" "org:erratique"]
homepage: "https://erratique.ch/software/zipc"
doc: "https://erratique.ch/software/zipc/doc"
bug-reports: "https://github.com/dbuenzli/zipc/issues"
depends: [
"ocaml" {>= "4.14.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
"b0" {dev & with-test}
]
depopts: ["cmdliner"]
conflicts: [
"cmdliner" {< "1.1.0"}
]
build: [
"ocaml"
"pkg/pkg.ml"
"build"
"--dev-pkg"
"%{dev}%"
"--with-cmdliner"
"%{cmdliner:installed}%"
]
dev-repo: "git+https://erratique.ch/repos/zipc.git"