blob: 42ab98a3c9f47e443a89cbc68f133bfa104cc946 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=BiocHubsShiny
_pkgver=1.6.2
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="View AnnotationHub and ExperimentHub Resources Interactively"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-annotationhub
r-dt
r-experimenthub
r-htmlwidgets
r-s4vectors
r-shiny
r-shinyace
r-shinyjs
r-shinythemes
r-shinytoastr
)
optdepends=(
r-biocmanager
r-biocstyle
r-knitr
r-rmarkdown
r-sessioninfo
r-shinytest2
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('378b45774777dce0e2d3b8dec328e866')
b2sums=('1d7c801bf7fe0d77e502663b8e634006831b15a5e52cd929bec677a92607a088576acc5f18d72540b0cce6486495d51c8329e60f1e953f32b5c2442156e970c1')
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"
}
|