blob: 300b3cf31f3947ae202f6e1437243a9857421aae (
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
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=bnlearn
_pkgver=5.1
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Bayesian Network Structure Learning, Parameter Learning and Inference"
arch=(x86_64)
url="https://cran.r-project.org/package=$_pkgname"
license=('GPL-2.0-or-later')
depends=(
blas
lapack
r
)
optdepends=(
r-gmp
r-grain
r-graph
r-grbase
r-igraph
r-rgraphviz
r-rmpfr
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('713685edc4462a0b738c06a9ce84ffb4')
b2sums=('98c724422d02eebd66036fe5e615edf812c090dbf39d9e9cdec9c115cc69ff49d53286e68f512dec5142e67604266d29db03319b89ce4d242f6858b92fa79b01')
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"
}
|