blob: 8097a76c3f022fad4a760c1c56c7a18282ae5f75 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=hrbrthemes
_pkgver=0.9.3
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Additional Themes, Theme Components and Utilities for 'ggplot2'"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('MIT')
depends=(
r-ggplot2
r-magrittr
r-scales
)
checkdepends=(
r-hunspell
r-stringi
r-testthat
r-vdiffr
)
optdepends=(
r-clipr
r-dplyr
r-gcookbook
r-gridextra
r-hunspell
r-stringi
r-svglite
r-testthat
r-vdiffr
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('33ca2f26236bfb7f9b02e72a33937bd6')
b2sums=('1afc02f6c7c511cc84ebacbbb60fc83dbebd4db73fb52cbae1c4cddc3188e0f8c78c4a8f7cef1323f33fc99785c36f39248b53d78109b5c1e2cd0813e3f19764')
prepare() {
# skip test since importing fonts with r-extrafont doesn't work
sed -i '/^ invisible(import_roboto_condensed/i\ \ skip("extrafont import does not work")' \
"$_pkgname/tests/testthat/test-hrbrthemes.R"
}
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
check() {
cd "$_pkgname/tests"
R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla test-all.R
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|