# system requirements: GNU make # Maintainer: Guoyi Zhang # Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com # Contributor: Taekyung Kim _pkgname=minqa _pkgver=1.2.6 pkgname=r-${_pkgname,,} pkgver=1.2.6 pkgrel=1 pkgdesc='Derivative-free optimization algorithms by quadratic approximation' arch=('x86_64') url="https://cran.r-project.org/package=${_pkgname}" license=('GPL') depends=( r r-rcpp make ) makedepends=( gcc-fortran ) source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz") sha256sums=('51a7b8850e5f2fee79e8f460b9d9eca4221d9702087cca5fab5851ad3d594110') 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: