blob: 9fb6fc2c8a3de2ac692ab29aaf73db4c4a7ba355 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=OmnipathR
_pkgver=3.12.4
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="OmniPath web service client and more"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('MIT')
depends=(
r-checkmate
r-crayon
r-curl
r-digest
r-dplyr
r-httr
r-igraph
r-jsonlite
r-later
r-logger
r-lubridate
r-magrittr
r-progress
r-purrr
r-rappdirs
r-readr
r-readxl
r-rlang
r-rmarkdown
r-rvest
r-stringi
r-stringr
r-tibble
r-tidyr
r-tidyselect
r-withr
r-xml2
r-yaml
)
checkdepends=(
r-testthat
)
optdepends=(
r-biocstyle
r-bookdown
r-ggplot2
r-ggraph
r-gprofiler2
r-knitr
r-mlrmbo
r-parallelmap
r-paramhelpers
r-rgraphviz
r-sigmajs
r-smoof
r-suprahex
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('bc6a953c52a5ebb64ac347817911e1dd')
b2sums=('dc69a4a4f652f71e2aff8eb73c3fb59bc3119c02dca340b52a957d0b8fb82775dfbb1a06f5cb5d1aa629b21bcf67dc2c362c70ed13a24a0df311034626efaf23')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
check() {
cd "$_pkgname/tests"
R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.R
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|