blob: 450b378d189684f4e7db6eec5cd7a318ab0126bd (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=interactiveDisplay
_pkgver=1.44.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Package for enabling powerful shiny web displays of Bioconductor objects"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-annotationdbi
r-biocgenerics
r-category
r-ggplot2
r-gridsvg
r-interactivedisplaybase
r-plyr
r-rcolorbrewer
r-reshape2
r-shiny
r-xml
)
optdepends=(
r-biobase
r-genomicranges
r-ggbio
r-go.db
r-gostats
r-gplots
r-gviz
r-hgu95av2.db
r-knitr
r-metagenomeseq
r-rtracklayer
r-runit
r-summarizedexperiment
r-vegan
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz"
"fix-install.patch")
md5sums=('1632e8f269ab0ca57340fa46eb5ce2bd'
'f3e9aa31acfa87ff679676bd8e433bf8')
b2sums=('157932f80d2a27612bba13d08d86effbef0e2268bc8483c21853c605efc5a9c3ea1ea5b7d8b66a2c26908df46a08028b9a23958a6bc58d398200a04f5359f955'
'c0347a4e255e6123aa5a418b9432f001afee872b963a4b4b4cc9b38c3015718bd7944118e87dcc5b9f8f9ce9c85bcb3b49c0fef17d2293e2460a7eda2a98844b')
prepare() {
# prevent unintended installing of BiocManager
patch -Np1 -i fix-install.patch
}
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"
}
|