this repo has no description
1opam-version: "2.0"
2synopsis: "Decode and encode tar format files in pure OCaml"
3description: """
4tar is a simple library to read and write tar files with an emphasis on
5streaming.
6
7This is pure OCaml code, no C bindings.
8"""
9maintainer: ["dave@recoil.org"]
10authors: ["Dave Scott" "Thomas Gazagnaire" "David Allsopp" "Antonin Décimo"]
11license: "ISC"
12tags: ["org:xapi-project" "org:mirage"]
13homepage: "https://github.com/mirage/ocaml-tar"
14doc: "https://mirage.github.io/ocaml-tar/"
15bug-reports: "https://github.com/mirage/ocaml-tar/issues"
16depends: [
17 "dune" {>= "2.9"}
18 "camlp-streams"
19 "ocaml" {>= "4.08.0"}
20 "ppx_cstruct" {build & >= "3.6.0"}
21 "cstruct" {>= "6.0.0"}
22 "re" {>= "1.7.2"}
23 "decompress" {>= "1.5.1"}
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "--promote-install-files=false"
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40 ["dune" "install" "-p" name "--create-install-files" name]
41]
42dev-repo: "git+https://github.com/mirage/ocaml-tar.git"
43url {
44 src:
45 "https://github.com/mirage/ocaml-tar/releases/download/v2.1.0/tar-2.1.0.tbz"
46 checksum: [
47 "sha256=05cf662c9cfc3fc6cf1e04785b8f65c125df5a617686c4ee86567c59d219cf2c"
48 "sha512=ac0307d3d99c8335f40a86257b328fa78603a6d558477fd7802ec14802e308c8dcddca3ae6609be23e715b4e6e554c10e876f315e5fefa96632f5c992dc0b782"
49 ]
50}
51x-commit-hash: "43ac8b8035296165dab5f5f3880c0ff385c1e18f"