summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 334f63f8205c1f5092b7028d2d9a791931ec18ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Contributor: Grey Christoforo <first name at last name dot net>
pkgname=r-delayedarray
_bc_name=DelayedArray
pkgver=0.8.0
pkgrel=1
pkgdesc="Delayed operations on array-like objects"
url="https://bioconductor.org/packages/release/bioc/html/${_bc_name}.html"
arch=("x86_64")
license=('Artistic-2.0')
depends=('r' 'r-iranges' 'r-biocgenerics' 'r-s4vectors' 'r-biocparallel' 'r-matrixstats')
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_bc_name}_${pkgver}.tar.gz")
sha1sums=('5e1481fdfbc8d4e4966aed238f750c3e01849863')

package() {
 mkdir -p $pkgdir/usr/lib/R/library
 cd $srcdir

 R CMD INSTALL -l $pkgdir/usr/lib/R/library ./${_bc_name}
}