summaryrefslogtreecommitdiff
path: root/community/python-pycuda/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/python-pycuda/PKGBUILD')
-rw-r--r--community/python-pycuda/PKGBUILD66
1 files changed, 0 insertions, 66 deletions
diff --git a/community/python-pycuda/PKGBUILD b/community/python-pycuda/PKGBUILD
deleted file mode 100644
index e1f2c2c5a..000000000
--- a/community/python-pycuda/PKGBUILD
+++ /dev/null
@@ -1,66 +0,0 @@
-# $Id: PKGBUILD 83271 2013-01-28 16:50:02Z stephane $
-# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
-pkgbase=python-pycuda
-pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2012.1
-pkgrel=2
-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>=1.52.0' '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
-}