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