2010-08-16 11:32:12 +08:00
|
|
|
# $Id: PKGBUILD 35784 2009-04-17 04:56:10Z eric $
|
|
|
|
# Maintainer: arjan <arjan@archlinux.org>
|
|
|
|
# Contributor orelien <aurelien.foret@wanadoo.fr>
|
|
|
|
|
|
|
|
pkgname=python-numeric
|
|
|
|
pkgver=24.2
|
2010-12-19 08:39:38 +08:00
|
|
|
pkgrel=5
|
2010-08-16 11:32:12 +08:00
|
|
|
pkgdesc="Numerical Python adds a fast array facility to the Python language."
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
url="http://numeric.scipy.org/"
|
|
|
|
license=('custom')
|
2010-12-19 08:39:38 +08:00
|
|
|
depends=('python2')
|
2010-08-16 11:32:12 +08:00
|
|
|
replaces=('numeric')
|
|
|
|
source=(http://downloads.sourceforge.net/sourceforge/numpy/Numeric-${pkgver}.tar.gz)
|
|
|
|
md5sums=('2ae672656e06716a149acb048cca3093')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/Numeric-${pkgver}
|
|
|
|
python setup.py install --root=${pkgdir}
|
|
|
|
install -D -m644 Legal.htm ${pkgdir}/usr/share/licenses/${pkgname}/Legal.htm
|
|
|
|
}
|