mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
63 lines
1.1 KiB
Bash
63 lines
1.1 KiB
Bash
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
|
|
|
_pkgname=xcms
|
|
_pkgver=3.16.1
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=${_pkgver//[:-]/.}
|
|
pkgrel=1
|
|
pkgdesc='LC-MS and GC-MS Data Analysis'
|
|
arch=('x86_64')
|
|
url="https://bioconductor.org/packages/${_pkgname}"
|
|
license=('GPL')
|
|
depends=(
|
|
r
|
|
r-biobase
|
|
r-biocgenerics
|
|
r-biocparallel
|
|
r-iranges
|
|
r-massspecwavelet
|
|
r-mscoreutils
|
|
r-msfeatures
|
|
r-msnbase
|
|
r-mzr
|
|
r-plyr
|
|
r-protgenerics
|
|
r-rann
|
|
r-rcolorbrewer
|
|
r-robustbase
|
|
r-s4vectors
|
|
r-summarizedexperiment
|
|
)
|
|
optdepends=(
|
|
r-biocstyle
|
|
r-catools
|
|
r-faahko
|
|
r-knitr
|
|
r-magrittr
|
|
r-maldiquant
|
|
r-msbackendmgf
|
|
r-msdata
|
|
r-multtest
|
|
r-ncdf4
|
|
r-pander
|
|
r-pheatmap
|
|
r-progress
|
|
r-rgl
|
|
r-rgraphviz
|
|
r-rmarkdown
|
|
r-spectra
|
|
r-testthat
|
|
r-xml
|
|
)
|
|
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
sha256sums=('a')
|
|
|
|
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:
|