blob: 29aa3b71c84e0b539e32471b08c7a1581cbd9061 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=emmeans
_pkgver=1.11.1
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Estimated Marginal Means, aka Least-Squares Means"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('GPL-2.0-only OR GPL-3.0-only')
depends=(
r-estimability
r-mvtnorm
r-numderiv
)
optdepends=(
r-bayesplot
r-bayestestr
r-biglm
r-brms
r-car
r-coda
r-compositions
r-ggplot2
r-knitr
r-lme4
r-lmertest
r-logspline
r-mediation
r-multcomp
r-multcompview
r-mumin
r-ordinal
r-pbkrtest
r-rmarkdown
r-rsm
r-sandwich
r-scales
r-testthat
r-tibble
r-xtable
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('544333d543464fd2facc9010baa93202')
b2sums=('23858b29d740efea7dca0e1948773dae9819bff0e55e956b8c27921dbbf47402d2e0eb6d0cbc03a648935d2a789f2017742b3e71463032c694af767529858d66')
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"
}
|