blob: 237f4a1784276cd4af5fc408b9094a6a01df25a7 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=doBy
_pkgver=4.6.22
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Groupwise Statistics, LSmeans, Linear Estimates, Utilities"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('GPL-2.0-or-later')
depends=(
r-broom
r-cowplot
r-deriv
r-dplyr
r-ggplot2
r-microbenchmark
r-modelr
r-rlang
r-tibble
r-tidyr
)
optdepends=(
r-geepack
r-knitr
r-lme4
r-markdown
r-multcomp
r-pbkrtest
r-testthat
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('201bc49e09e3c5cb9c30af8ea41c3e5e')
b2sums=('790d22508da5a122445700bbe3252b017308ed11859e242d68239122fa5853a2907ba3556a7e7dc027f88dfc42040141ed73c5e76333d8a47f8a4575e96adec0')
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"
}
|