~dricottone/pkgbuilds

ref: 05eab451ab70e0d097386bfb393e8ac3fb6bfe14 pkgbuilds/r-evaluate/PKGBUILD -rw-r--r-- 806 bytes
05eab451Dominic Ricottone Added missing LICENSE 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
# Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com

_cranname=evaluate
_cranver=0.23
pkgname=r-${_cranname,,}
pkgver=${_cranver//[:-]/.}
pkgrel=1
pkgdesc="Parsing and Evaluation Tools that Provide More Details than the Default"
arch=(any)
url="https://cran.r-project.org/package=${_cranname}"
license=(MIT)
depends=('r>=3.0.2' r-methods)
optdepends=(r-covr r-ggplot2 r-testthat r-lattice r-rlang r-withr)
source=("https://cran.r-project.org/src/contrib/${_cranname}_${_cranver}.tar.gz")
sha256sums=('c9cf9c37502b8fbfa78e4eb96b8c3d1789060e49505c86c07cb7476da804a45c')

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