mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
fix: r-jasprobustttests
This commit is contained in:
parent
ed7902bc47
commit
6f8d4cd76c
4 changed files with 77 additions and 1 deletions
|
@ -61,6 +61,7 @@ depends=('r'
|
|||
"r-jasppower"
|
||||
"r-jaspprophet"
|
||||
"r-jaspreliability"
|
||||
"r-jasprobustttests"
|
||||
"r-jaspsem"
|
||||
"r-jaspsummarystatistics"
|
||||
"r-jasptimeseries"
|
||||
|
|
|
@ -29,4 +29,4 @@ package() {
|
|||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||
}
|
||||
}
|
||||
|
|
46
BioArchLinux/r-robtt/PKGBUILD
Normal file
46
BioArchLinux/r-robtt/PKGBUILD
Normal file
|
@ -0,0 +1,46 @@
|
|||
# system requirements: GNU make
|
||||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=RoBTT
|
||||
_pkgver=1.2.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Robust Bayesian T-Test'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-bayestools
|
||||
r-bh
|
||||
r-bridgesampling
|
||||
r-ggplot2
|
||||
r-rcpp
|
||||
r-rcppeigen
|
||||
r-rcppparallel
|
||||
r-rdpack
|
||||
r-rstan
|
||||
r-rstantools
|
||||
r-stanheaders
|
||||
)
|
||||
optdepends=(
|
||||
r-covr
|
||||
r-knitr
|
||||
r-parallel
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
r-vdiffr
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('79db72dfdf2e5ba5e942daf575cc657fff46a49f8bac78c097c67dcbcdd7a910')
|
||||
|
||||
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:
|
29
BioArchLinux/r-robtt/lilac.yaml
Normal file
29
BioArchLinux/r-robtt/lilac.yaml
Normal file
|
@ -0,0 +1,29 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
post_build_script: |
|
||||
git_pkgbuild_commit()
|
||||
update_aur_repo()
|
||||
pre_build_script: |
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
repo_depends:
|
||||
- r-bayestools
|
||||
- r-bh
|
||||
- r-bridgesampling
|
||||
- r-ggplot2
|
||||
- r-rcpp
|
||||
- r-rcppeigen
|
||||
- r-rcppparallel
|
||||
- r-rdpack
|
||||
- r-rstan
|
||||
- r-rstantools
|
||||
- r-stanheaders
|
||||
update_on:
|
||||
- regex: RoBTT_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=RoBTT
|
||||
- alias: r
|
Loading…
Add table
Reference in a new issue