# Maintainer: Pekka Ristola # Contributor: Guoyi Zhang # Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com # Contributor: Taekyung Kim # Contributor: Alex Branham _pkgname=abind _pkgver=1.4-5 pkgname=r-${_pkgname,,} pkgver=${_pkgver//[:-]/.} pkgrel=10 pkgdesc="Combine Multidimensional Arrays" arch=(any) url="https://cran.r-project.org/package=${_pkgname}" license=(LGPL) depends=( r ) source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz") md5sums=('136f981e1c4f618b64a87faaa7797c97') sha256sums=('3a3ace5afbcb86e56889efcebf3bf5c3bb042a282ba7cc4412d450bb246a3f2c') build() { mkdir -p build R CMD INSTALL "$_pkgname" -l build } package() { install -d "$pkgdir/usr/lib/R/library" cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library" }