this repo has no description
1opam-version: "2.0"
2maintainer: "unixjunkie@sdf.org"
3authors: ["Francois Berenger"]
4homepage: "https://github.com/UnixJunkie/oplsr"
5bug-reports: "https://github.com/UnixJunkie/oplsr/issues"
6dev-repo: "git+https://github.com/UnixJunkie/oplsr.git"
7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
8build: ["dune" "build" "-p" name "-j" jobs]
9install: ["R" "CMD" "BATCH" "install_pls.r"]
10depends: [
11 "batteries"
12 "conf-gnuplot"
13 "conf-r"
14 "cpm"
15 "dolog" {>= "4.0.0"}
16 "dune" {>= "1.0.0"}
17 "minicli" {>= "5.0.0"}
18 "ocaml"
19 "parany" {>= "11.0.0"}
20]
21synopsis: "OCaml wrapper for the R 'pls' package"
22description: """
23Some OCaml functions to drive the Partial Least Squares regressor
24from the R 'pls' package.
25This package really fires up and talks to an R interpreter.
26
27Bibliography:
28=============
29Wehrens, R., & Mevik, B. H. (2007).
30The pls package: principal component and partial least squares regression in R.
31https://www.jstatsoft.org/index.php/jss/article/view/v018i02/v18i02.pdf
32"""
33post-messages: """
34Please interact with R to install needed things in user-space:
35R
36install.packages('pls', repos='http://cran.r-project.org')""" {failure}
37url {
38 src: "https://github.com/UnixJunkie/oplsr/archive/v8.0.1.tar.gz"
39 checksum: [
40 "sha256=d37d3f8de5d801476bdef039f3397094cb4b2be2a3dbe080c07f38b772b9cbb1"
41 "md5=f87beecab830659b1329ce472559bbbd"
42 ]
43}
44extra-source "install_pls.r" {
45 src:
46 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/oplsr/install_pls.r"
47 checksum: [
48 "sha256=0677e62adb25accfc89dc2441237768cca09b4f1f6e9335b51b5d821fa24d2c2"
49 "md5=2600c14c1b3f9e109ec651e8f763dd8e"
50 ]
51}