blob: 1c9d92cd6845182528520dbe0faeedcc3f8c492a (
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
|
# Maintainer: sukanka <su975853527@gmail.com>
_pkgname=BiocBaseUtils
_pkgver=1.12.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="General utility functions for developing Bioconductor packages"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r
)
optdepends=(
r-biocstyle
r-knitr
r-rmarkdown
r-tinytest
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('d82175a5a77950261e1f0efa6f60e5b6')
b2sums=('966f5c5b5424240c75911857c7f1a24b0251ac0f318386059aa5fc9d277e35fc20ae89a041ee37fec6ea6cd7b1ff155155e8bd3dfa405bae7e6fe52f4f02c4cb')
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"
}
|