blob: b3125c41a3389ce059fc1d64005278ee901366c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# system requirements: 1. C++11, 2. a graphic driver or a CPU SDK. 3. ICDloader For Windows user, an ICD loader is required atC:/windows/system32/OpenCL.dll (Usually it is installed by thegraphic driver). For Linux user (Except mac):ocl-icd-opencl-dev package is required. For Mac user, no actionis needed for the system has installed the dependency. 4. GNUmake
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=gpuMagic
_pkgver=1.18.0
pkgname=r-${_pkgname,,}
pkgver=1.18.0
pkgrel=1
pkgdesc='An openCL compiler with the capacity to compile R functions and run the code on GPU'
arch=('x86_64')
url="https://bioconductor.org/packages/${_pkgname}"
license=('GPL')
depends=(
r
r-biocgenerics
r-deriv
r-desctools
r-digest
r-pryr
r-rcpp
r-stringr
ocl-icd
)
optdepends=(
r-biocstyle
r-knitr
r-rmarkdown
r-testthat
)
makdepends=(
make
)
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
sha256sums=('14e7ba94590e9d08e99da73a3960c5c4b2dee3ebb4420f79a9e475562349ad74')
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:
|