blob: ea95db2a6e90c6b76b530d440d7c99443f01bbe7 (
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.10.5
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=('7458b6e14a5c1909c7b8aafdc646f6e2')
b2sums=('c0b8c711081f65d9f2e2faf933cb615e55b19129da3f9762d70a65665db829a40d345c1aa0e11ea7eee6ca2c62196476f9af5b7f597905fd8cd12041bcd63fc4')
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"
}
|