blob: ce95b7a5f2b7b254220879039869791d52ef5500 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=canceR
_pkgver=1.42.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="A Graphical User Interface for accessing and modeling the Cancer Genomics Data of MSKCC"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-2.0-only')
depends=(
r-biobase
r-cbioportaldata
r-circlize
r-dplyr
r-formula
r-genetclassifier
r-gseabase
r-phenotest
r-plyr
r-r.methodss3
r-r.oo
r-runit
r-tidyr
r-tkrplot
)
optdepends=(
r-biocstyle
r-knitr
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('5d2578ea1b01f1a410e3a5a8ebc44bc5')
b2sums=('e74af3ba09eef778e4483eb52ff549bc44ac650e719142e7d533cee4fa2325c054e85a5cfe5d69feb1e091b5ee7ad1db775a9f8ce77827fa90f45b298be6dc9c')
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"
}
|