blob: 69a011d024015ccf04b9ad9920c4799660a3d0f0 (
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.2.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=2
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=('bc7ef9bc6285eb045f191b7c72846d68')
b2sums=('c620612fdd40357b51f688148eae7ea11b518a5c8b934fd5dc929063ff966274f5141855e1f868cf87dfb74cda1008ff569099dac0f02ee40fcadaf01cf29aaf')
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"
}
|