# Maintainer: Pekka Ristola # Contributor: Guoyi Zhang # Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com # Contributor: frichtlm _pkgname=generics _pkgver=0.1.3 pkgname=r-${_pkgname,,} pkgver=${_pkgver//-/.} pkgrel=8 pkgdesc="Common S3 Generics not Provided by Base R Methods Related to Model Fitting" arch=(any) url="https://cran.r-project.org/package=$_pkgname" license=('MIT') depends=( r ) checkdepends=( r-testthat ) optdepends=( r-covr r-pkgload r-testthat r-tibble r-withr ) source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz") md5sums=('655261e97ea23c9193b047a27eee5d0e') b2sums=('100745ecd8f979975e45852ffb41befc0ae8a34156d333b3e723743e2ecc93e882d31bae5f8dde192d21452edae119f4ed4f18eb9379203c67679b739450a374') build() { mkdir build R CMD INSTALL -l build "$_pkgname" } check() { cd "$_pkgname/tests" R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.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" }