blob: a5a8641a5f32aa431a2ceb633a114cb40088c8ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=mlr3
_pkgver=0.17.0
pkgname=r-${_pkgname,,}
pkgver=0.17.0
pkgrel=1
pkgdesc='Machine Learning in R - Next Generation'
arch=('any')
url="https://cran.r-project.org/package=${_pkgname}"
license=('LGPL')
depends=(
r
r-backports
r-checkmate
r-data.table
r-evaluate
r-future
r-future.apply
r-lgr
r-mlbench
r-mlr3measures
r-mlr3misc
r-palmerpenguins
r-paradox
r-parallelly
r-r6
r-uuid
)
optdepends=(
r-callr
r-codetools
r-datasets
r-future.callr
r-matrix
r-mlr3data
r-progressr
r-remotes
r-rpart
r-testthat
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('4a0f1138b33a6d79eef6f44068a13f3549e91c966b415a86065a283d464cd6be')
build() {
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
}
package() {
install -dm0755 "${pkgdir}/usr/lib/R/library"
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
}
# vim:set ts=2 sw=2 et:
|