blob: 434e5c9be14f1f512e9ba913dc38fdea85c8afe1 (
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
|
# Maintainer: sukanka <su975853527@gmail.com>
_pkgname=wrswoR
_pkgver=1.1.1
pkgname=r-${_pkgname,,}
pkgver=1.1.1
pkgrel=1
pkgdesc='Weighted Random Sampling without Replacement'
arch=('x86_64')
url="https://cran.r-project.org/package=${_pkgname}"
license=('GPL')
depends=(
r
r-logging
r-rcpp
)
optdepends=(
r-batchexperiments
r-biocmanager
r-dplyr
r-ggplot2
r-import
r-kimisc
r-knitcitations
r-knitr
r-metap
r-microbenchmark
r-rmarkdown
r-roxygen2
r-rticles
r-sampling
r-testthat
r-tidyr
r-tikzdevice
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('11045a62feef679bbcb02a0ede8a2c5985393df57f47b67da2733884116016e0')
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:
|