mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
35 lines
927 B
Bash
35 lines
927 B
Bash
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
|
# Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com
|
|
|
|
_pkgname=rversions
|
|
_pkgver=2.1.2
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=2.1.2
|
|
pkgrel=7
|
|
pkgdesc="Query 'R' Versions, Including 'r-release' and 'r-oldrel'"
|
|
arch=('any')
|
|
url="https://cran.r-project.org/package=${_pkgname}"
|
|
license=('MIT')
|
|
depends=(
|
|
r
|
|
r-curl
|
|
r-xml2
|
|
)
|
|
optdepends=(
|
|
r-covr
|
|
r-mockery
|
|
r-testthat
|
|
)
|
|
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
sha256sums=('de5818233e8271132fe8ea70145618950b35786e0d2f270e39bf3338f3b8b160')
|
|
|
|
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"
|
|
install -Dm644 "${_pkgname}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|
|
# vim:set ts=2 sw=2 et:
|