mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
38 lines
906 B
Bash
38 lines
906 B
Bash
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
|
|
|
|
_pkgname=BiocHail
|
|
_pkgver=1.2.0
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=${_pkgver//-/.}
|
|
pkgrel=1
|
|
pkgdesc="basilisk and hail"
|
|
arch=(any)
|
|
url="https://bioconductor.org/packages/$_pkgname"
|
|
license=('Artistic-2.0')
|
|
depends=(
|
|
r-basilisk
|
|
r-biocfilecache
|
|
r-biocgenerics
|
|
r-dplyr
|
|
r-reticulate
|
|
)
|
|
optdepends=(
|
|
r-biocstyle
|
|
r-dt
|
|
r-ggplot2
|
|
r-knitr
|
|
r-testthat
|
|
)
|
|
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
md5sums=('4707c299d0bb3b41001065a753d89f33')
|
|
b2sums=('25a4267f3ff39afe7185a5ea7d3bc9dafc5d870e8368a863372ba555695869e6196f0a1d98496c8e4600e7493ee65cb9ffb958e8d663e98832843b1d631c8a86')
|
|
|
|
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"
|
|
}
|