blob: 90fa1f10c426c0dc47023a5deecf8277ce0b1ea4 (
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
62
63
64
65
66
67
68
69
70
71
72
73
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=InterCellar
_pkgver=2.14.0
pkgname=r-${_pkgname,,}
pkgver=2.14.0
pkgrel=1
pkgdesc='InterCellar: an R-Shiny app for interactive analysis and exploration of cell-cell communication in single-cell transcriptomics'
arch=('any')
url="https://bioconductor.org/packages/${_pkgname}"
license=('MIT')
depends=(
r
r-biomart
r-circlize
r-colorspace
r-colourpicker
r-complexheatmap
r-config
r-data.table
r-dendextend
r-dplyr
r-dt
r-factoextra
r-fmsb
r-fs
r-ggplot2
r-golem
r-htmltools
r-htmlwidgets
r-igraph
r-plotly
r-plyr
r-readxl
r-rlang
r-scales
r-shiny
r-shinyalert
r-shinycssloaders
r-shinydashboard
r-shinyfeedback
r-shinyfiles
r-signal
r-tibble
r-tidyr
r-umap
r-visnetwork
r-wordcloud2
)
optdepends=(
r-attempt
r-biocstyle
r-glue
r-graphite
r-httr
r-knitr
r-processx
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('44fdab853d27c6f7dbb979fc06c5a5f6fb33a7e345ce1e4713bac7c19fd7a757')
build() {
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
}
package() {
install -dm0755 "${pkgdir}/usr/lib/R/library"
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
install -Dm644 "${_pkgname}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set ts=2 sw=2 et:
|