mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
678 B
Bash
22 lines
678 B
Bash
|
# $Id: PKGBUILD 35787 2009-04-17 05:13:48Z eric $
|
||
|
# Maintainer: arjan <arjan@archlinux.org>
|
||
|
# Contributor orelien <aurelien.foret@wanadoo.fr>
|
||
|
|
||
|
pkgname=python-numeric
|
||
|
pkgver=24.2
|
||
|
pkgrel=4
|
||
|
pkgdesc="Numerical Python adds a fast array facility to the Python language."
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://numeric.scipy.org/"
|
||
|
license=('custom')
|
||
|
depends=('python>=2.5')
|
||
|
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
|
||
|
}
|