this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Richard Jones" 4 "Christophe Troestler" ] 5license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 6homepage: "https://github.com/Chris00/ocaml-csv" 7dev-repo: "git+https://github.com/Chris00/ocaml-csv.git" 8bug-reports: "https://github.com/Chris00/ocaml-csv/issues" 9tags: [ "database" "science" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 14 ["ocaml" "setup.ml" "-build"] {with-test} 15 ["ocaml" "setup.ml" "-test"] {with-test} 16 ["ocaml" "setup.ml" "-doc"] {with-doc} 17] 18install: ["ocaml" "setup.ml" "-install"] 19remove: [ 20 ["ocaml" "%{etc}%/csv/_oasis_remove_.ml" "%{etc}%/csv"] 21] 22depends: [ 23 "ocaml" {< "5.0.0"} 24 "base-bytes" 25 "ocamlbuild" {build} 26 "ocamlfind" {build & >= "1.5"} 27] 28synopsis: "A pure OCaml library to read and write CSV files." 29description: """ 30This is a pure OCaml library to read and write CSV files, including 31all extensions used by Excel — e.g. quotes, newlines, 8 bit 32characters in fields, \\"0 etc. A special representation of rows of CSV 33files with a header is provided. The library comes with a handy 34command line tool called csvtool for handling CSV files from shell 35scripts.""" 36url { 37 src: 38 "https://github.com/Chris00/ocaml-csv/releases/download/1.5/csv-1.5.tar.gz" 39 checksum: [ 40 "sha256=f6307634e5f5fe3d64b90fdf8841b3f50dac80ed45b40d390ee44490c62bf58f" 41 "md5=93fb7204e3a2d38184ddce545d03c2fb" 42 ] 43}