summaryrefslogtreecommitdiff
path: root/community/python-pycuda
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-10 00:05:41 -0800
committerroot <root@rshg054.dnsready.net>2013-01-10 00:05:41 -0800
commite858862e8c8ed2f14352fe6305f64eae0e66d860 (patch)
treee20e83566248f43cdc3d877c27a456b1d09aa9e0 /community/python-pycuda
parentdf5c50dd38ff67fd25c968d9ac33f9a52bc4583c (diff)
Thu Jan 10 00:05:41 PST 2013
Diffstat (limited to 'community/python-pycuda')
-rw-r--r--community/python-pycuda/PKGBUILD66
1 files changed, 66 insertions, 0 deletions
diff --git a/community/python-pycuda/PKGBUILD b/community/python-pycuda/PKGBUILD
new file mode 100644
index 000000000..ada4857bb
--- /dev/null
+++ b/community/python-pycuda/PKGBUILD
@@ -0,0 +1,66 @@
+# $Id: PKGBUILD 82154 2013-01-09 16:03:12Z stephane $
+# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
+pkgbase=python-pycuda
+pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
+pkgver=2012.1
+pkgrel=1
+pkgdesc="Python wrapper for Nvidia CUDA"
+arch=('i686' 'x86_64')
+url="http://mathema.tician.de/software/pycuda"
+license=('MIT')
+source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz)
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'python2-numpy' 'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
+sha1sums=('dd52ee697ae9f6256efac3bca682be9c6e7c9649')
+
+build() {
+ cd "${srcdir}"
+
+ _arch=''
+ [ "$CARCH" = "x86_64" ] && _arch='64'
+
+ cp -a pycuda-${pkgver}{,-python2}
+
+ cd "${srcdir}"/pycuda-${pkgver}
+ python3 ./configure.py \
+ --cuda-root=/opt/cuda \
+ --cuda-inc-dir=/opt/cuda/include \
+ --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+ --cudart-lib-dir=/opt/cuda/lib${_arch} \
+ --no-use-shipped-boost \
+ --boost-python-libname=boost_python3
+ make
+
+ cd "${srcdir}"/pycuda-${pkgver}-python2
+ python2 ./configure.py \
+ --cuda-root=/opt/cuda \
+ --cuda-inc-dir=/opt/cuda/include \
+ --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+ --cudart-lib-dir=/opt/cuda/lib${_arch} \
+ --no-use-shipped-boost
+ make
+}
+
+package_python-pycuda() {
+ depends=('cuda' 'nvidia-utils' 'python-numpy' 'python-pytools' 'python' 'boost-libs' 'pycuda-headers')
+ cd "${srcdir}"/pycuda-${pkgver}
+ python3 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=1
+
+ rm -fr "${pkgdir}"/usr/include
+}
+
+package_python2-pycuda() {
+ depends=('cuda' 'nvidia-utils' 'python2-numpy' 'python2-pytools' 'python2' 'boost-libs' 'pycuda-headers')
+ cd "${srcdir}"/pycuda-${pkgver}-python2
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=1
+
+ rm -fr "${pkgdir}"/usr/include
+}
+
+package_pycuda-headers() {
+ cd "${srcdir}"/pycuda-${pkgver}
+ install -dm755 "${pkgdir}"/usr/include/pycuda
+
+ for file in $(ls -1 src/cuda/*.hpp); do
+ install -m644 ${file} "${pkgdir}"/usr/include/pycuda
+ done
+}