this repo has no description
1opam-version: "2.0" 2synopsis: "Objective Caml bindings for the R interpreter" 3description: """ 4OCaml-R is a library that can be used to construct R values in memory, 5convert them to OCaml values, and build clean wrappers to R 6functions. It provide a simple means to develop bindings to any R 7package.""" 8maintainer: "philippe.veber@gmail.com" 9authors: [ 10 "Guillaume Yzyquel" 11 "Maxence Guesdon" 12 "Philippe Veber" 13] 14license: "GPL" 15homepage: "https://github.com/pveber/ocaml-r" 16bug-reports: "https://github.com/pveber/ocaml-r/issues" 17dev-repo: "git+https://github.com/pveber/ocaml-r.git" 18doc: "https://pveber.github.io/ocaml-r/api" 19depends: [ 20 "ocaml" 21 "base" {build & >= "v0.14" & < "v0.17"} 22 "conf-r" {build} 23 "conf-r-mathlib" {build} 24 "dune" {>= "1.5"} 25 "stdio" {build & >= "v0.14"} 26] 27build: ["dune" "build" "-p" name "-j" jobs] 28url { 29 src: "https://github.com/pveber/ocaml-r/archive/v0.3.1.tar.gz" 30 checksum: [ 31 "md5=bb90812ae1056d76d2caacf2403c650d" 32 "sha512=1927bd281f5c90ae922dedeac89b895fc3c909477a210946ab8877e57a643e7f11cf329869be0a9a007aa4667c2345b4c0dddeb2768ad3a35adf5118029fb566" 33 ] 34}