blob: 0a290c269fcd49bae4a4708d7539289959bd068a (
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
57
58
59
60
61
62
63
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: sukanka <su975853527@gmail.com>
_pkgname=heplots
_pkgver=1.7.4
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Visualizing Hypothesis Tests in Multivariate Linear Models"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('GPL-2.0-or-later')
depends=(
r-broom
r-car
r-magrittr
r-purrr
r-rgl
r-tibble
)
optdepends=(
r-animation
r-archdata
r-bookdown
r-candisc
r-cardata
r-corrgram
r-dplyr
r-effects
r-ggplot2
r-glue
r-gplots
r-here
r-knitr
r-mvinfluence
r-patchwork
r-qqtest
r-reshape
r-reshape2
r-rmarkdown
r-rrcov
r-sleuth2
r-tidyr
r-tinytable
r-markdown
r-vcdextra
r-r.rsp
r-litedown
r-aplpack
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('ac3f8b1dae7302e7778194707ecd6680')
b2sums=('e574447732cc139b26f63558dbef393169ec5c84864c1d964aae0a1f1800e91d0a07e9af3d2b03f229ba8d2264af55b2b06389b34d8a1d97b25d76fdabd984c7')
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"
}
|