~dricottone/pkgbuilds

ref: 150c2bdffc35436dfd261c6b5228b19fbba39b5f pkgbuilds/r-lifecycle/PKGBUILD -rw-r--r-- 902 bytes
150c2bdfDominic Ricottone r-reprex 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: frichtlm <frichtlm@gmail.com>

_cranname=lifecycle
_cranver=1.0.4
pkgname=r-${_cranname,,}
pkgver=${_cranver//[:-]/.}
pkgrel=2
pkgdesc="Manage the Life Cycle of your Package Functions"
arch=(any)
url="https://cran.r-project.org/package=${_cranname}"
license=(MIT)
depends=('r>=3.4' 'r-cli>=3.4.0' r-glue 'r-rlang>=1.0.6')
optdepends=(r-covr r-crayon r-knitr r-lintr r-rmarkdown r-testthat r-tibble r-tidyverse r-vctrs r-withr r-tools)
source=("https://cran.r-project.org/src/contrib/${_cranname}_${_cranver}.tar.gz")
sha256sums=('ada4d3c7e84b0c93105e888647c5754219a8334f6e1f82d5afaf83d4855b91cc')

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"
}