blob: 0c14b8de81b73374388c259b13ea69d70e99deb2 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=SFEData
_pkgver=1.8.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Example SpatialFeatureExperiment datasets"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-annotationhub
r-biocfilecache
r-experimenthub
)
optdepends=(
r-biocstyle
r-knitr
r-rmarkdown
r-seuratobject
r-spatialfeatureexperiment
r-testthat
)
source=("https://bioconductor.org/packages/release/data/experiment/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('0e1005c4fc1b0ca2bef593cffedb87d3')
b2sums=('dd3316d3c3b410a4726fc46ce518a16c95fd7c89fe502cde64851b565fb6f85bd878aef080067f376b583705b75115472152b72c813ee224aa253f23ef102030')
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"
}
|