summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a6e278246faa561893928c5e4e456ddd65107432 (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
# Maintainer: Edwin Peters <slimed13 at hotmail dot com>

# You can always get the latest version on GitHub (those are unstable) with the
# command:
# sudo pip2 install --upgrade git+https://github.com/lebedov/scikits.cuda.git#egg=scikit

pkgname=python-scikit-cuda-git
pkgver=57213a9
pkgrel=1
pkgdesc="Python interface to GPU-powered libraries"
arch=('any')
url="http://scikit-cuda.readthedocs.org/"
license=('BSD')
depends=('python' 'python-numpy' 'cuda' 'python-pycuda' 'python-mako' 'python-pytest')
optdepends=('python-scipy' 'python-sphinx' 'python-sphinx_rtd_theme')
makedepends=('python-setuptools' 'git')
source=(git+https://github.com/lebedov/scikit-cuda.git)
sha256sums=(SKIP)

package() {
  cd ${srcdir}/scikit-cuda

  # ignores any LDFLAGS set in makepkg.conf
  unset LDFLAGS

  python ./setup.py install --root=${pkgdir}

}