mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
22 lines
674 B
Bash
22 lines
674 B
Bash
# $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
|
|
pkgrel=5
|
|
pkgdesc="Numerical Python adds a fast array facility to the Python language."
|
|
arch=(i686 x86_64)
|
|
url="http://numeric.scipy.org/"
|
|
license=('custom')
|
|
depends=('python2')
|
|
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
|
|
}
|