blob: 9b1f26f2fed76435a61da4572338f7aa84ae12d3 (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=atena
_pkgver=1.10.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Analysis of Transposable Elements"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-annotationhub
r-biocgenerics
r-biocparallel
r-cli
r-genomeinfodb
r-genomicalignments
r-genomicfeatures
r-genomicranges
r-iranges
r-matrixgenerics
r-matrixstats
r-rsamtools
r-s4vectors
r-sparsematrixstats
r-squarem
r-summarizedexperiment
)
optdepends=(
r-biocstyle
r-covr
r-knitr
r-rcolorbrewer
r-rmarkdown
r-runit
r-txdb.dmelanogaster.ucsc.dm6.ensgene
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('1af6f43fd617b2c4d2d8ea14a71f7ced')
b2sums=('cffe0fd0f4a20da45591339ab7a3ec1b6a7a1ab432518f7862ee626fd32d4df9bf8ba67b6f530ec4680a52ec32734efb983419aa43a8fa6e3ff74f941f2556af')
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"
}
|