mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
23 lines
801 B
Bash
23 lines
801 B
Bash
|
# 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')
|