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-1.0-or-later" 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" 18depends: [ 19 "ocaml" 20 "base" {build & < "v0.17"} 21 "configurator" {build} 22 "conf-r" {build} 23 "conf-r-mathlib" {build} 24 "dune" 25 "stdio" {build} 26] 27build: ["dune" "build" "-p" name "-j" jobs] 28url { 29 src: "https://github.com/pveber/ocaml-r/archive/v0.1.1.tar.gz" 30 checksum: [ 31 "md5=11daca06539fbb87ce076d7d2cf87f7e" 32 "sha512=50e749781de4a6f0e87be3869bfe95e641d3ffb2400ab51d807e018be273a38c2861c8796871b17b50162a891d9fe74cd79654594039f8e7b048f7959a4585b8" 33 ] 34}