~dricottone/pkgbuilds

ref: b52f2235b1908767f5183db430df41e283aee320 pkgbuilds/r-withr/PKGBUILD -rw-r--r-- 905 bytes
b52f2235Dominic Ricottone README updates 11 months ago
                                                                                
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
# Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com
# Contributor: Grey Christoforo <first name at last name dot net>

_cranname=withr
_cranver=2.5.2
pkgname=r-${_cranname,,}
pkgver=${_cranver//[:-]/.}
pkgrel=2
pkgdesc="Run Code 'With' Temporarily Modified Global State"
arch=(any)
url="https://cran.r-project.org/package=${_cranname}"
license=(MIT)
depends=('r>=3.2.0' r-graphics r-grdevices r-stats)
optdepends=(r-callr r-covr r-dbi r-knitr r-rmarkdown r-rsqlite r-testthat r-lattice r-methods r-rlang)
source=("https://cran.r-project.org/src/contrib/${_cranname}_${_cranver}.tar.gz")
sha256sums=('d5b6fa6d728fda5201310d6ad5921a43aae1c23029c25334bfc1e54cb13d4205')

build() {
  R CMD INSTALL ${_cranname}_${_cranver}.tar.gz -l "${srcdir}"
}

package() {
  install -dm0755 "${pkgdir}/usr/lib/R/library"

  cp -a --no-preserve=ownership "${_cranname}" "${pkgdir}/usr/lib/R/library"
}