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.1.2/tar-3.1.2.tbz"
49 checksum: [
50 "sha256=85c79308a41d3d594b98cfe42eaee46b875855748eb0f0e48a9785042bed16a3"
51 "sha512=fa1871d66f3588a08952a9de347af8be94535476be0ed31808996eb79eb13c2e31f8be543e3123e99178a927212e08eca13c4294cd6dcd596513856907cf2218"
52 ]
53}
54x-commit-hash: "6e524cd9567eb4d24b636d1bc7bde0659f5c8719"