mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
33 lines
835 B
Bash
33 lines
835 B
Bash
# system requirements: C++11
|
|
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
|
|
|
_pkgname=RcppThread
|
|
_pkgver=2.1.6
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=2.1.6
|
|
pkgrel=1
|
|
pkgdesc='R-Friendly Threading in C++'
|
|
arch=('any')
|
|
url="https://cran.r-project.org/package=${_pkgname}"
|
|
license=('MIT')
|
|
depends=(
|
|
r
|
|
)
|
|
optdepends=(
|
|
r-r.rsp
|
|
r-rcpp
|
|
r-testthat
|
|
)
|
|
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
sha256sums=('e9470c5e29e5e07ac5360d165ec96effad9115c03833b25c3acd8cd6809a27a5')
|
|
|
|
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:
|