mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
54 lines
1.1 KiB
Bash
54 lines
1.1 KiB
Bash
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
|
|
|
|
_pkgname=TSAR
|
|
_pkgver=1.4.0
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=${_pkgver//-/.}
|
|
pkgrel=1
|
|
pkgdesc="Thermal Shift Analysis in R"
|
|
arch=(any)
|
|
url="https://bioconductor.org/packages/$_pkgname"
|
|
license=('AGPL-3.0-only')
|
|
depends=(
|
|
r-dplyr
|
|
r-ggplot2
|
|
r-ggpubr
|
|
r-jsonlite
|
|
r-magrittr
|
|
r-minpack.lm
|
|
r-openxlsx
|
|
r-plotly
|
|
r-readxl
|
|
r-rhandsontable
|
|
r-shiny
|
|
r-shinyjs
|
|
r-shinywidgets
|
|
r-stringr
|
|
r-tidyr
|
|
)
|
|
checkdepends=(
|
|
r-testthat
|
|
)
|
|
optdepends=(
|
|
r-knitr
|
|
r-rmarkdown
|
|
r-testthat
|
|
)
|
|
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
md5sums=('841c30e0dfaafc18f334079e604b927b')
|
|
b2sums=('28fbcd83bb526af877f06dde90468ea17ad6375e8386ec5fb962c5f2701ab810321d4714d817b29d8309faba0b3fe3cf8d6de6e0cfd24926a0c07af67a59ca35')
|
|
|
|
build() {
|
|
mkdir build
|
|
R CMD INSTALL -l build "$_pkgname"
|
|
}
|
|
|
|
check() {
|
|
cd "$_pkgname/tests"
|
|
R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.R
|
|
}
|
|
|
|
package() {
|
|
install -d "$pkgdir/usr/lib/R/library"
|
|
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
|
|
}
|