blob: 3920683c23ff669274dc6ce498dd46b2ef6c33f4 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=mlr3
_pkgver=0.22.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Machine Learning in R - Next Generation"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('LGPL-3.0-only')
depends=(
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-future.callr
r-mlr3data
r-progressr
r-remotes
r-rhpcblasctl
r-testthat
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('3918b6c200011558ff5d31290062c49b')
b2sums=('cdd7cebded4c5f26fc624f053289e129711b3f154d7ff00a8313ec33692f695324f3b584c3e05bb4847c23575c93a4735247ef0cccc50b83f313834175848986')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
}
|