PKGBUILDs/community/python-scipy/PKGBUILD
2009-10-09 21:15:33 -05:00

22 lines
801 B
Bash
Executable file

# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
pkgname=python-scipy
pkgver=0.7.1
pkgrel=1
pkgdesc="SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering."
arch=('i686' 'x86_64')
url="http://www.scipy.org"
license=('BSD')
depends=('lapack' 'blas')
makedepends=('python-numpy' 'gcc')
conflicts=('scipy' 'scipy_core')
source=("http://downloads.sourceforge.net/scipy/scipy-$pkgver.tar.gz")
options=("force")
build() {
cd $startdir/src/scipy-$pkgver
python setup.py config_fc --fcompiler=gnu95 build || return 1
python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr --root=$startdir/pkg
install -D -m644 LICENSE.txt $startdir/pkg/usr/share/licenses/$pkgname/LICENSE.txt
}
md5sums=('0d2f0e92e9fbcf8cdae8ca5c19c7ee8f')