-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathopam
52 lines (50 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
opam-version: "2.0"
synopsis: "Binding to libarchive for LWT"
description: """
libarchive is a C library for reading and writing tar, cpio, zip, ISO, and
other archive formats. This library is its OCaml bindings.
* Reads a variety of formats, including tar, pax, cpio, zip, xar, lha, ar,
cab, mtree, and ISO images.
* Writes tar, pax, cpio, zip, xar, ar, ISO, mtree, and shar archives.
* Full automatic format detection when reading archives, including
compressed archives.
[libarchive website](http://code.google.com/p/libarchive/)
"""
maintainer: ["Sylvain Le Gall <[email protected]>"]
authors: ["Sylvain Le Gall"]
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/gildor478/ocaml-archive"
bug-reports: "https://github.com/gildor478/ocaml-archive/issues"
depends: [
"dune" {>= "3.17"}
"ocaml" {>= "4.14.1"}
"archive" {= version}
"lwt" {>= "2.3.2"}
"extlib" {>= "1.8.0" & with-test}
"ounit2" {>= "2.2.7" & with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/gildor478/ocaml-archive.git"
url {
src:
"https://github.com/gildor478/ocaml-archive/releases/download/v3.7.2%2B5/archive-3.7.2.5.tbz"
checksum: [
"sha256=628004d93c1af1c732c4d44328f6ff6a695662f6fe7c1aa62c041612bbdea585"
"sha512=d62db7f8c6b9293cb27bb58c0fd828b9be0e803ab492b640b45dac11ff89321adb8fadd5ff9a8d429aca3b2563497247991ba2fbf2e073f567b985d229b42235"
]
}
x-commit-hash: "5adae5c344722019412e538289e2e0e150d2e99b"