diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-29 16:55:23 -0300 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2019-05-29 20:16:09 +0000 |
commit | b4ef7cc4f48b8755693ef439234968747194f78a (patch) | |
tree | 3e11c8253fa073333633649129de8ae8bc8d9b04 /community/py-numpy/APKBUILD | |
parent | 33f71a68f829b7ac76d49cf9c4a4734e46317cb6 (diff) | |
download | aports-b4ef7cc4f48b8755693ef439234968747194f78a.tar.bz2 aports-b4ef7cc4f48b8755693ef439234968747194f78a.tar.xz |
community/py-numpy: fix license and url and modernize.
Diffstat (limited to 'community/py-numpy/APKBUILD')
-rw-r--r-- | community/py-numpy/APKBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/community/py-numpy/APKBUILD b/community/py-numpy/APKBUILD index 431643fc89..002dd8d4b3 100644 --- a/community/py-numpy/APKBUILD +++ b/community/py-numpy/APKBUILD @@ -5,11 +5,11 @@ pkgname=py-numpy _pkgname=numpy pkgver=1.16.4 -pkgrel=0 +pkgrel=1 pkgdesc="Scientific tools for Python" -url="http://numpy.scipy.org/" +url="https://www.numpy.org/" arch="all" -license="BSD" +license="BSD-3-Clause" options="!check" makedepends="python2-dev py-setuptools python3-dev cython openblas-dev>=0.3.0 gfortran py-nose" @@ -33,14 +33,11 @@ build() { export Atlas=None LDFLAGS="$LDFLAGS -shared" - cd "$builddir" python2 setup.py build config_fc --fcompiler=gnu95 python3 setup.py build config_fc --fcompiler=gnu95 } package() { - cd "$builddir" - local python; for python in python2 python3; do $python setup.py install --prefix=/usr --root="$pkgdir" \ config_fc --fcompiler=gnu95 |