# Maintainer: Guoyi Zhang # Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com _pkgname=gitcreds _pkgver=0.1.2 pkgname=r-${_pkgname,,} pkgver=${_pkgver//-/.} pkgrel=7 pkgdesc="Query 'git' Credentials from 'R'" arch=(any) url="https://cran.r-project.org/package=$_pkgname" license=('MIT') depends=( git r ) optdepends=( r-covr r-knitr r-mockery r-oskeyring r-rmarkdown r-testthat r-withr ) source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz") md5sums=('b79f9a70433189507d3eb0bdc07fae6e') b2sums=('a2ab5d96ef2150b16ee11361675f8d55faddb0eae35a034dd4a7471734818b6f387e342a4923f7ae91466887f648b7b3d965d2dcef9ff5d4ac72412d2dda05bc') build() { mkdir build R CMD INSTALL -l build "$_pkgname" } 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" }