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.0.0/tar-3.0.0.tbz" 48 checksum: [ 49 "sha256=0451f858db837ae47b8e792a999d5b9a688782c981377fd5b2dcf58cfb86b2f3" 50 "sha512=609f9b40b28b6a3045a628107a0879fad05d5dece469772175881cd7858c2de7fb4858db9727f1740603f0cc19d6295b37bb0df1a3f7afdc05867b622551f6f4" 51 ] 52} 53x-commit-hash: "d8c7eae2cdadcf3354e70f06ca350a2f3b1c9c1b"