blob: bdc7d27d4836651cfcfd7fd2ae395b3dfcb89a72 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=miRSM
_pkgver=2.4.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Inferring miRNA sponge modules in heterogeneous data"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-3.0-only')
depends=(
r-bibitr
r-bicare
r-biclust
r-biobase
r-clusterprofiler
r-dbscan
r-dose
r-dynamictreecut
r-energy
r-fabia
r-flashclust
r-gfa
r-gseabase
r-ibbig
r-igraph
r-isa2
r-linkcomm
r-matrixcorrelation
r-mcl
r-mclust
r-nmf
r-org.hs.eg.db
r-pma
r-ppclust
r-rcpp
r-reactomepa
r-rqubic
r-s4vd
r-sombrero
r-subspace
r-summarizedexperiment
r-wgcna
)
optdepends=(
r-biocstyle
r-knitr
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('8647e33c0068c43785a6b21abb0d8b7e')
b2sums=('e2664cff8e958e755305c7dc9c55ffca6e03292064d061d3df01384e936b7e1a89534a08d584bf87977dd1243fc7c975555a521de0e2dcb5edd7a3d22c4355d6')
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"
}
|