this repo has no description
1opam-version: "2.0" 2synopsis: "DBF format parsing" 3description: 4 "This is a small library meant to parse dBase database files. Many cases/variants are not handled but it might already be useful." 5maintainer: ["philippe.veber@gmail.com"] 6authors: ["Léo Andrès" "Philippe Veber"] 7license: "ISC" 8homepage: "https://github.com/pveber/dbf" 9bug-reports: "https://github.com/pveber/dbf/issues" 10depends: [ 11 "ocaml" {>= "4.08"} 12 "dune" {>= "3.6"} 13 "cstruct-unix" {>= "4.0.0"} 14 "ppx_cstruct" {>= "5.2.0"} 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31dev-repo: "git+https://github.com/pveber/dbf.git" 32url { 33 src: "https://github.com/pveber/dbf/releases/download/v0.2.0/dbf-0.2.0.tbz" 34 checksum: [ 35 "sha256=ea9ad8565894bf1906f33723dcb965a1c4ddf37473bad5ee3420b03c0a42a5d2" 36 "sha512=3d1154e7faef72dc30456ba80002156acc9807db43b8903f525a6958a58bf5d2178991661b15f2c01d8b772bd5db0c9f0b3e7715af9404560d56ecd1c6bc039b" 37 ] 38} 39x-commit-hash: "6de5383ed6f06237cf9f8ab490816930ac2cc5f5"