# Maintainer: Pekka Ristola # Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com # Contributor: Kibouo _pkgname=spelling _pkgver=2.3.0 pkgname=r-${_pkgname,,} pkgver=${_pkgver//-/.} pkgrel=1 pkgdesc="Tools for Spell Checking in R" arch=(any) url="https://cran.r-project.org/package=$_pkgname" license=('MIT') depends=( r-commonmark r-hunspell r-knitr r-xml2 ) optdepends=( r-pdftools ) source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz") md5sums=('375bbd00c2d9980ee78ffb834175d139') b2sums=('750815d3fd1d60d4340ec4c3e4567b4e6162af1fd0d1fe0e6483e054de3cd138a87f092152be00750cd04ddb6458cc6e4a430bfe14aaee992d09ac6854becb47') build() { mkdir build R CMD INSTALL -l build "$_pkgname" } check() { cd "$_pkgname/tests" R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla spelling.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" }