blob: 74ad58a1c116ee09718e306d64198bda6b90c84f (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
# Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com
# Contributor: Alex Branham <branham@utexas.edu>
_pkgname=recipes
_pkgver=1.1.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Preprocessing and Feature Engineering Steps for Modeling"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('MIT')
depends=(
r-cli
r-clock
r-dplyr
r-generics
r-glue
r-gower
r-hardhat
r-ipred
r-lifecycle
r-lubridate
r-magrittr
r-purrr
r-rlang
r-tibble
r-tidyr
r-tidyselect
r-timedate
r-vctrs
r-withr
)
checkdepends=(
r-ddalpha
r-dials
r-dimred
r-fastica
r-igraph
r-kernlab
r-mixomics
r-modeldata
r-rann
r-rcppml
r-rcpproll
r-rsample
r-rspectra
r-splines2
r-testthat
r-workflows
)
optdepends=(
r-covr
r-ddalpha
r-dials
r-ggplot2
r-igraph
r-kernlab
r-knitr
r-modeldata
r-parsnip
r-rann
r-rcpproll
r-rmarkdown
r-rsample
r-rspectra
r-splines2
r-testthat
r-workflows
r-xml2
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('ee911057a93ba41dd3054d9ff2cb671c')
b2sums=('8bb1d62416a810a0d04f77f73483abc1d0e04a257cfbf2886f431e8f170d2b27d9f0a4a59336bc5c8c5928853274a405189522ec8344dd9eb8481f3051d1c49e')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
check() {
cd "$_pkgname/tests"
R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.R
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|