# $Id: PKGBUILD 205836 2014-02-11 12:33:14Z jgc $ # Maintainer: Jan de Groot # Contributor: Douglas Soares de Andrade # Contributor: Angel 'angvp' Velasquez pkgbase=python-numpy pkgname=('python2-numpy' 'python-numpy') pkgver=1.8.0 pkgrel=2 pkgdesc="Scientific tools for Python" arch=('i686' 'x86_64') license=('custom') url="http://www.numpy.org/" makedepends=('lapack' 'python' 'python2' 'python-setuptools' 'python2-setuptools' 'gcc-fortran' 'python-nose' 'python2-nose') options=('staticlibs') source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz numpy-insecure-mktemp-use.patch) md5sums=('2a4b0423a758706d592abb6721ec8dcd' '2caf84740b54dcb5fa1d47e72201f294') prepare() { cd numpy-$pkgver patch -Np1 -i ../numpy-insecure-mktemp-use.patch cd .. cp -a numpy-$pkgver numpy-py2-$pkgver cd numpy-py2-$pkgver sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \ -i $(find . -name '*.py') } build() { export ATLAS=None export LDFLAGS="$LDFLAGS -shared" echo "Building Python2" cd numpy-py2-$pkgver python2 setup.py config_fc --fcompiler=gnu95 build echo "Building Python3" cd ../numpy-$pkgver python setup.py config_fc --fcompiler=gnu95 build } package_python2-numpy() { depends=('lapack' 'python2') optdepends=('python2-nose: testsuite') _pyver=2.7 export ATLAS=None export LDFLAGS="$LDFLAGS -shared" cd numpy-py2-$pkgver python2 setup.py config_fc --fcompiler=gnu95 install --prefix=/usr --root="${pkgdir}" --optimize=1 install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy" install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/" install -m755 -d "${pkgdir}/usr/include/python${_pyver}" ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy "${pkgdir}/usr/include/python${_pyver}/numpy" } package_python-numpy() { depends=('lapack' 'python') optdepends=('python-nose: testsuite') provides=("python3-numpy=${pkgver}") replaces=('python3-numpy') conflicts=('python3-numpy') _pyver=3.3 _pyinc=3.3m export ATLAS=None export LDFLAGS="$LDFLAGS -shared" cd numpy-$pkgver python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr --root="${pkgdir}" --optimize=1 install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy" install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/" install -m755 -d "${pkgdir}/usr/include/python${_pyinc}" ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy "${pkgdir}/usr/include/python${_pyinc}/numpy" }