summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dff46f176a2369aa5e2d8371ad58aaab394bc124 (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
# Maintainer: Victor <v1c70rp at gmail dot com>

_pkgname=thrust
pkgname=thrust-git
pkgver=1.9.4.28.g986d178b
pkgrel=1
pkgdesc='A C++ parallel programming library which resembles the C++ Standard Library'
arch=('any')
url="https://github.com/thrust/${_pkgname}"
license=('Apache')

provides=('thrust')
conflicts=('thrust')
makedepends=('git')
depends=()
optdepends=(
  'cuda: for CUDA backend'
  'openmp: for OMP backend'
  'intel-tbb: for TBB backend'
)

source=("git+https://github.com/thrust/${_pkgname}.git")
sha256sums=('SKIP')

pkgver() {
  cd "${_pkgname}"
  git describe --always | sed -e 's|-|.|g'
}

package() {
  install -dm 755 "${pkgdir}/opt/${_pkgname}"
  cd "${srcdir}/${_pkgname}" 
  cp -r ${_pkgname} "${pkgdir}/opt/${_pkgname}/"
  cp -r examples "${pkgdir}/opt/${_pkgname}/"
}

# vim: ft=sh ts=2 sw=2 et