summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fa64646a0380af3e08b79c3fcf9e491f94320594 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# $Id: PKGBUILD 82124 2013-01-09 01:12:19Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>

#pkgbase=python-pyopencl-git
#pkgname=('python2-pyopencl-git' 'python-pyopencl-git' 'pyopencl-headers-git')
#pkgname=('python-pyopencl-git')
pkgname=('python2-pyopencl-git')
#pkgname=('pyopencl-headers-git')
pkgver=20130428
pkgrel=1
pkgdesc="A complete, object-oriented language binding of OpenCL to Python"
arch=('i686' 'x86_64')
url="http://mathema.tician.de/software/pyopencl"
license=('custom')
makedepends=('git' 'ctags' 'python2-distribute' 'python-distribute' 'libcl' 'opencl-headers' 'mesa' 'boost' 'python2-mako' 'python-mako' 'python-numpy' 'python2-numpy')
source=('LICENSE.txt')
sha1sums=('2e6966b3d9b15603ce2c3ff79eeadd63c5d066b7')

_gitroot='git://github.com/inducer/pyopencl.git'
_gitname='pyopencl_cache'

build() {
   msg 'Connecting to github GIT server....'

   if [ -d $_gitname ] ; then
     pushd $_gitname
     git pull origin
     popd
     msg 'The local files are updated.'
   else
     git clone $_gitroot $_gitname
   fi

   msg 'GIT checkout done or server timeout'

   cd $_gitname

   git submodule update --init

   cd ${srcdir}

   for build in pyopencl pyopencl-python2
   do
     [ -d $build ] && rm -rf $build
     cp -r $_gitname $build
   done

   msg 'Starting make...'

   cd "${srcdir}/pyopencl"
   python3 ./configure.py --cl-enable-gl --no-use-shipped-boost --boost-python-libname=boost_python3
   python3 setup.py build

   cd "$srcdir/pyopencl-python2"
   python2 ./configure.py --cl-enable-gl --no-use-shipped-boost
   python2 setup.py build
}

package_python-pyopencl-git() {
   depends=('libcl' 'opencl-headers' 'mesa' 'boost' 'python' 'python-numpy' 'python-mako' 'python-pytools' 'pyopencl-headers-git')
   provides=('python-pyopencl')
   conflicts=('python-pyopencl')

   cd "${srcdir}/pyopencl"
   python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build

   rm -fr "${pkgdir}"/usr/include

   install -D -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}

package_python2-pyopencl-git() {
   depends=('libcl' 'opencl-headers' 'mesa' 'boost' 'python2' 'python2-numpy' 'python2-mako' 'python2-pytools' 'pyopencl-headers-git')
   provides=('python2-pyopencl')
   conflicts=('python2-pyopencl')

   cd "${srcdir}/pyopencl-python2"
   python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build

   rm -fr "${pkgdir}"/usr/include

   install -D -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}

package_pyopencl-headers-git() {
   provides=('pyopencl-headers')
   conflicts=('pyopencl-headers')
   cd "${srcdir}/pyopencl"
   install -dm755 "${pkgdir}"/usr/include/pyopencl

   for file in src/cl/*.{h,cl}; do
      install -m644 ${file} "${pkgdir}"/usr/include/pyopencl
   done
}