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