17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
|
# Description: Array manipulation and computational capabilities.
|
||
|
# URL: http://numeric.scipy.org/
|
||
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Depends on: python
|
||
|
|
||
|
name=numarray
|
||
|
version=1.5.2
|
||
|
release=1
|
||
|
source=(http://dl.sourceforge.net/sourceforge/numpy/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
python setup.py install --root=$PKG
|
||
|
}
|
||
|
|