blob: 5113efa98285e0fdf7f5fc0bbb6d42c1f38436c2 (
plain)
1 # $Id: Pkgfile 1330 2006-11-13 20:54:04Z prologic $
2 # Description: Numeric Python Library.
3 # URL: http://numeric.scipy.org/
4 # Maintainer: James Mills prologic at shortcircuit dot net dot au
5 # Packager: James Mills prologic at shortcircuit dot net dot au
6 # Depends on: python
7
8 name=numeric
9 version=24.2
10 release=1
11 source=(http://dl.sourceforge.net/sourceforge/numpy/Numeric-$version.tar.gz)
12
13 build() {
14 cd Numeric-$version
15 python setup.py install --root=$PKG
16 chown -R root:root $PKG
17 }
|