blob: c108a25c9da4bf24c3bd427259f3aebc5f755942 (
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=storr
_pkgver=1.2.6
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Simple Key Value Stores"
arch=(x86_64)
url="https://cran.r-project.org/package=$_pkgname"
license=('MIT')
depends=(
r-digest
r-r6
)
checkdepends=(
postgresql
r-dbi
r-mockr
r-rpostgres
r-rsqlite
r-testthat
)
optdepends=(
r-dbi
r-knitr
r-mockr
r-progress
r-rbenchmark
r-rmarkdown
r-rpostgres
r-rsqlite
r-testthat
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('63e12d87ce5965780333c1657048490b')
b2sums=('7c03815f3c7b6cc93204a6ee19018e50790198cc54cb6c2d4c9d9265c568501e284c6cc1953ac929ddd7d164daaa81164dd30c50b1e87ec01ff070c558e56cd3')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
check() {
cd "$_pkgname/tests"
# create database for tests
export PGDATA="$srcdir/db"
export PGHOST="$srcdir/host"
mkdir "$PGHOST"
initdb
pg_ctl -o "-h '' -k ${PGHOST@Q}" start
createdb
R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.R
# shut down test database
pg_ctl stop
}
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"
}
|