33 lines
908 B
Bash
33 lines
908 B
Bash
# Template file for 'python-scipy'
|
|
pkgname=python-scipy
|
|
version=1.2.0
|
|
revision=1
|
|
wrksrc="scipy-${version}"
|
|
build_style=python-module
|
|
pycompile_module="scipy"
|
|
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"
|
|
short_desc="Scientific library for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://scipy.org/scipylib/"
|
|
license="BSD-3-Clause"
|
|
distfiles="https://github.com/scipy/scipy/archive/v${version}.tar.gz"
|
|
checksum=4bb04ed281c55471b598f69eaa730825ddf613b9d9517834181c707dc4509fce
|
|
|
|
LDFLAGS="-shared"
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt
|
|
}
|
|
|
|
python3-scipy_package() {
|
|
pycompile_module="scipy"
|
|
depends="python3-numpy"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.txt
|
|
}
|
|
}
|