mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
727 B
Bash
20 lines
727 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com>
|
|
|
|
pkgname=python-numarray
|
|
pkgver=1.5.2
|
|
pkgrel=3
|
|
pkgdesc="Provides array manipulation and computational capabilities similar to those found in IDL, Matlab, or Octave."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.pfdubois.com/numpy"
|
|
license=("BSD")
|
|
depends=('python')
|
|
source=(http://downloads.sourceforge.net/sourceforge/numpy/numarray-$pkgver.tar.gz LICENSE)
|
|
|
|
build() {
|
|
cd $startdir/src/numarray-$pkgver
|
|
python setup.py install --root=$startdir/pkg
|
|
install -D ../LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
md5sums=('d2ecfc60fe4869c328b872540d04e0f7'
|
|
'e32b4466453e530d7fb0dbeee0ca1044')
|