blob: ca68762cd3e5806337591c6311dbe7455335b3ca (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=flowWorkspace
_pkgver=4.18.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Infrastructure for representing and interacting with gated and ungated cytometry data sets"
arch=(x86_64)
url="https://bioconductor.org/packages/$_pkgname"
license=('AGPL-3.0-only')
depends=(
boost-libs
hdf5
r-biobase
r-biocgenerics
r-cytolib
r-data.table
r-delayedarray
r-dplyr
r-flowcore
r-ggplot2
r-graph
r-matrixstats
r-ncdfflow
r-rbgl
r-rgraphviz
r-rprotobuflib
r-s4vectors
r-scales
r-xml
)
makedepends=(
boost
r-bh
r-cpp11
r-rhdf5lib
)
checkdepends=(
r-flowworkspacedata
r-testthat
)
optdepends=(
r-cytoml
r-flowworkspacedata
r-ggcyto
r-knitr
r-opencyto
r-rmarkdown
r-testthat
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz"
"system-hdf5.patch")
md5sums=('6c2010307be1f1484a32a9d09a4752b3'
'd83db00432ba74621da54d24fce960fc')
b2sums=('b75b43e2754eef6c836a41b129c69a2b433124646e7b2487be0a47d81929de389453819fa545713c132fb90f9e0f3d6d770c3e24b154523b89d27bf1a0879380'
'5f693100c9198981f8ff28aca945499054570fb5957ae22c908f2e4c19cf79704e5961589632e6568a5e62229b678ab748c02333919a18193b773c1ed602bbaf')
prepare() {
# use system hdf5 and skip failing tests
patch -Np1 -i system-hdf5.patch
}
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"
}
|