blob: d2741f44fec8dd339cbfcd7264c83fbfcc0b86b3 (
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
59
60
61
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=escape
_pkgver=2.2.3
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Easy single cell analysis platform for enrichment"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('MIT')
depends=(
r-aucell
r-biocparallel
r-dplyr
r-ggdist
r-ggplot2
r-ggpointdensity
r-ggridges
r-gseabase
r-gsva
r-matrixgenerics
r-msigdbr
r-patchwork
r-reshape2
r-seuratobject
r-singlecellexperiment
r-stringr
r-summarizedexperiment
r-ucell
)
optdepends=(
r-biocstyle
r-hexbin
r-knitr
r-markdown
r-rcolorbrewer
r-rlang
r-rmarkdown
r-scran
r-seurat
r-spelling
r-testthat
r-vdiffr
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('af1fa9eb8df3252a960cd70ba2f41873')
b2sums=('05bbd9694bb753799b7b7a614e1a27203ff6d76c984e6e80051d358c40d90d87ac13c6c73c9c58288f8f1c6c00a47f7ed1f5733a38edab80485d30938d6db7e4')
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"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|