this repo has no description
1opam-version: "2.0"
2synopsis: "Objective Caml bindings for the R interpreter"
3description: """
4
5OCaml-R is a library that can be used to construct R values in memory,
6convert them to OCaml values, and build clean wrappers to R
7functions. It provide a simple means to develop bindings to any R
8package."""
9maintainer: ["philippe.veber@gmail.com"]
10authors: ["Guillaume Yzyquel" "Maxence Guesdon" "Philippe Veber"]
11license: "GPL-3.0-only"
12tags: ["R" "statistics"]
13homepage: "https://github.com/pveber/ocaml-r/"
14doc: "https://pveber.github.io/ocaml-r/ocaml-r/index.html"
15bug-reports: "https://github.com/pveber/ocaml-r/issues"
16depends: [
17 "ocaml" {>= "4.08"}
18 "base" {build & >= "v0.14" & < "v0.17"}
19 "conf-r" {build}
20 "conf-r-mathlib" {build}
21 "dune" {>= "2.5"}
22 "stdio" {>= "v0.14" & build}
23 "alcotest" {with-test & >= "1.2.0"}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/pveber/ocaml-r.git"
40x-commit-hash: "888680d5ecc2eb3d4aeb87c52cf48a0990a038d5"
41url {
42 src:
43 "https://github.com/pveber/ocaml-r/releases/download/v0.4.0/ocaml-r-v0.4.0.tbz"
44 checksum: [
45 "sha256=12629a334c28908343a590785e69e086ddf899bb8a0e61b31a9b2e4e36ce3baa"
46 "sha512=b39d8a286652f4d7bdcae37f44d9d1844e0de41491dfb44ac7443fabdfb4e0d14467b9a4f612bac1ca8252d0f0075654925f4e491792a60cdb045added7b7c59"
47 ]
48}