blob: 08f8945201ef2864bbbb585785e53669e5c13102 (
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=bigstatsr
_pkgver=1.6.1
pkgname=r-${_pkgname,,}
pkgver=1.6.1
pkgrel=1
pkgdesc='Statistical Tools for Filebacked Big Matrices'
arch=('x86_64')
url="https://cran.r-project.org/package=${_pkgname}"
license=('GPL')
depends=(
r
r-bigassertr
r-bigparallelr
r-cowplot
r-foreach
r-ggplot2
r-ps
r-rcpp
r-rcpparmadillo
r-rmio
r-rspectra
r-tibble
)
optdepends=(
r-bigmemory
r-bigreadr
r-covr
r-data.table
r-dplyr
r-glmnet
r-hexbin
r-memuse
r-modelmetrics
r-plotly
r-ppcor
r-rhpcblasctl
r-spelling
r-testthat
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('9135e29484afdf092b023f0f1b16dfa690d1c28b74e58ab5d05bbf106a2d84b0')
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:
|