void-packages/srcpkgs/python-scipy/template
Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

33 lines
919 B
Bash

# Template file for 'python-scipy'
pkgname=python-scipy
version=1.0.0
revision=2
wrksrc="scipy-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools
python-Cython python3-Cython gcc-fortran"
makedepends="python-devel python3-devel python-numpy python3-numpy lapack-devel"
depends="python-numpy"
pycompile_module="scipy"
short_desc="Scientific library for Python2"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://www.scipy.org/"
license="3-clause-BSD"
distfiles="https://github.com/scipy/scipy/archive/v${version}.tar.gz"
checksum=c423a4511684554958dab55f2877df78e765b44f8eef46d5425891d6ac3b49bc
LDFLAGS="-shared"
post_install() {
vlicense LICENSE.txt LICENSE
}
python3-scipy_package() {
pycompile_module="scipy"
depends="python3-numpy"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE.txt LICENSE
}
}