blob: 6e083f3ba93a5e1fb761c1a49ec5bb50718e9ada (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=clusterExperiment
_pkgver=2.26.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Compare Clusterings for Single-Cell Sequencing"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-ape
r-biocgenerics
r-biocsingular
r-delayedarray
r-edger
r-hdf5array
r-kernlab
r-limma
r-locfdr
r-matrixstats
r-mbkmeans
r-nmf
r-phylobase
r-pracma
r-rcolorbrewer
r-rcpp
r-s4vectors
r-scales
r-singlecellexperiment
r-stringr
r-summarizedexperiment
r-zinbwave
)
optdepends=(
r-biocstyle
r-igraph
r-knitr
r-mast
r-rmarkdown
r-rtsne
r-scran
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('5b62fb1a5cf835fdb7b463628d835691')
b2sums=('605501c203f5494a68023ee37d5dfd3c99a4760cb193491830aa0c73b718a2dbb33648089fc32195f62df4202feaa4cdd0c62a06e36d5bfe3c654132dd70f488')
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"
}
|