mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
31 lines
793 B
Bash
31 lines
793 B
Bash
# system requirements: GSL and OpenMP
|
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
|
|
|
_pkgname=iBMQ
|
|
_pkgver=1.46.0
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=1.46.0
|
|
pkgrel=1
|
|
pkgdesc='integrated Bayesian Modeling of eQTL data'
|
|
arch=('x86_64')
|
|
url="https://bioconductor.org/packages/${_pkgname}"
|
|
license=('Artistic2.0')
|
|
depends=(
|
|
r
|
|
r-biobase
|
|
r-ggplot2
|
|
gsl
|
|
openmpi
|
|
)
|
|
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
sha256sums=('947d21a73630d5f38664aac73a1fd6cec415a19490a983d0d9152641b3073cd6')
|
|
|
|
build() {
|
|
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
|
}
|
|
|
|
package() {
|
|
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
|
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
|
}
|
|
# vim:set ts=2 sw=2 et:
|