diff options
author | Sukanka | 2022-06-06 16:46:39 +0800 |
---|---|---|
committer | Sukanka | 2022-06-06 16:46:39 +0800 |
commit | 8c359096b93873446fe57454cfc245a2f0cc3d50 (patch) | |
tree | 63e1a114cd52674dd53578d54d8cd7b2fa04cdf4 /PKGBUILD | |
download | aur-8c359096b93873446fe57454cfc245a2f0cc3d50.tar.gz |
add r-nanostringnctools
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..8ebcc361fbb6 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,45 @@ +# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net> + +_pkgname=NanoStringNCTools +_pkgver=1.4.0 +pkgname=r-${_pkgname,,} +pkgver=1.4.0 +pkgrel=1 +pkgdesc='NanoString nCounter Tools' +arch=('any') +url="https://bioconductor.org/packages/${_pkgname}" +license=('MIT') +depends=( + r + r-biobase + r-biocgenerics + r-biostrings + r-ggbeeswarm + r-ggiraph + r-ggplot2 + r-ggthemes + r-iranges + r-pheatmap + r-rcolorbrewer + r-s4vectors +) +optdepends=( + r-biovizbase + r-ggbio + r-knitr + r-qpdf + r-rmarkdown + r-runit +) +source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz") +sha256sums=('8795930d4e5ae55bf039359bf7df6df97cf2675b198afa0558794285693650a5') + +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: |