mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
r-workflows: init, checkdependency of r-recipes
This commit is contained in:
parent
e957eab46b
commit
8386f3efd3
3 changed files with 85 additions and 0 deletions
50
BioArchLinux/r-workflows/PKGBUILD
Normal file
50
BioArchLinux/r-workflows/PKGBUILD
Normal file
|
@ -0,0 +1,50 @@
|
|||
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
|
||||
|
||||
_pkgname=workflows
|
||||
_pkgver=1.1.3
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//-/.}
|
||||
pkgrel=1
|
||||
pkgdesc="Modeling Workflows"
|
||||
arch=(any)
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=(MIT)
|
||||
depends=(
|
||||
r-cli
|
||||
r-generics
|
||||
r-glue
|
||||
r-hardhat
|
||||
r-lifecycle
|
||||
r-modelenv
|
||||
r-parsnip
|
||||
r-rlang
|
||||
r-tidyselect
|
||||
r-vctrs
|
||||
)
|
||||
optdepends=(
|
||||
r-butcher
|
||||
r-covr
|
||||
r-dials
|
||||
r-knitr
|
||||
r-magrittr
|
||||
r-modeldata
|
||||
r-recipes
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
md5sums=('d646ec2abe7014fa31ccf569139dbf4c')
|
||||
sha256sums=('baa26a876b56e61bd3339a44297e3c5b719a92c9316495fb17836dfa8caf4181')
|
||||
|
||||
build() {
|
||||
mkdir -p build
|
||||
R CMD INSTALL "$_pkgname" -l build
|
||||
}
|
||||
|
||||
package() {
|
||||
install -d "$pkgdir/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
|
||||
|
||||
install -d "$pkgdir/usr/share/licenses/$pkgname"
|
||||
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
|
||||
}
|
14
BioArchLinux/r-workflows/lilac.py
Normal file
14
BioArchLinux/r-workflows/lilac.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
import os
|
||||
import sys
|
||||
sys.path.append(os.path.normpath(f'{__file__}/../../../lilac-extensions'))
|
||||
from lilac_r_utils import r_pre_build
|
||||
|
||||
def pre_build():
|
||||
r_pre_build(_G)
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
||||
update_aur_repo()
|
21
BioArchLinux/r-workflows/lilac.yaml
Normal file
21
BioArchLinux/r-workflows/lilac.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: pekkarr
|
||||
email: pekkarr@protonmail.com
|
||||
repo_depends:
|
||||
- r-cli
|
||||
- r-generics
|
||||
- r-glue
|
||||
- r-hardhat
|
||||
- r-lifecycle
|
||||
- r-modelenv
|
||||
- r-parsnip
|
||||
- r-rlang
|
||||
- r-tidyselect
|
||||
- r-vctrs
|
||||
update_on:
|
||||
- source: rpkgs
|
||||
pkgname: workflows
|
||||
repo: cran
|
||||
md5: true
|
||||
- alias: r
|
Loading…
Add table
Reference in a new issue