blob: 9e9c12e431a65f27b1af59d48204741fd974fe74 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=GenomicPlot
_pkgver=1.2.4
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Plot profiles of next generation sequencing data in genomic features"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-2.0-only')
depends=(
r-biocgenerics
r-circlize
r-complexheatmap
r-cowplot
r-dplyr
r-edger
r-genomation
r-genomeinfodb
r-genomicalignments
r-genomicfeatures
r-genomicranges
r-ggplot2
r-ggplotify
r-ggpubr
r-ggsci
r-ggsignif
r-iranges
r-plyranges
r-rcas
r-rsamtools
r-rtracklayer
r-scales
r-tidyr
r-txdbmaker
r-venndiagram
r-viridis
)
optdepends=(
r-annotationdbi
r-biobase
r-biocstyle
r-knitr
r-r.utils
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('7e6a36cf53bbc17e1f424949a72119b3')
b2sums=('22a8a81ed20afb551cad80b901c2a2581e0c4191cb8ab49796fde39b6129039c33e9ab185125d1dbab71a9f87eee8c12ceeaa4b604bdd53cfd913f24d9b4aa46')
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"
}
|