blob: 3ff4ac9d2471968ae359338900dd437f6de6a1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: sukanka <su975853527@gmail.com>
_pkgname=S4Arrays
_pkgver=1.6.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Foundation of array-like containers in Bioconductor"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-abind
r-biocgenerics
r-crayon
r-iranges
r-s4vectors
)
optdepends=(
r-biocparallel
r-biocstyle
r-delayedarray
r-knitr
r-rmarkdown
r-sparsearray
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('0bdfca3df96ee46fa23a4913cbeccf9b')
b2sums=('eb6e5bc84b2010e960093f2b1e6c7276a501fe3f4bcbc9595f3551d13204b6b016c74522fd3b3561deb4735298b3090a9b553ff85f7f1d5435beecbc07297b39')
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"
}
|