blob: ecf859d32bfbc1ff473ca8b8a4e76469d6f43bf3 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=CytoPipeline
_pkgver=1.6.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Automation and visualization of flow cytometry data analysis pipelines"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('GPL-3.0-only')
depends=(
r-biocfilecache
r-biocparallel
r-diagram
r-flowai
r-flowcore
r-ggcyto
r-ggplot2
r-jsonlite
r-peacoqc
r-rlang
r-scales
r-withr
)
checkdepends=(
r-testthat
r-vdiffr
)
optdepends=(
r-biocstyle
r-diffviewer
r-dplyr
r-knitr
r-reshape2
r-rmarkdown
r-testthat
r-vdiffr
r-cytopipelinegui
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('6166a108d4604b10a9563dfc7641b35b')
b2sums=('f31578d6a55045a4ee22c2990305b34b87e0c273f36d6f26aa59169b449789419712821b90b68695e3e4185270d58b3731d2375df21edf82bad090a3c4c112c8')
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"
}
|