35 lines
1,003 B
Bash
35 lines
1,003 B
Bash
# Template file for 'python-numexpr'
|
|
pkgname=python-numexpr
|
|
version=2.4.4
|
|
revision=1
|
|
wrksrc="numexpr-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
makedepends="python-devel python3.4-devel python-numpy-devel python3.4-numpy-devel"
|
|
depends="python-numpy"
|
|
pycompile_module="numexpr"
|
|
short_desc="Fast numerical expression evaluator for NumPy (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/pydata/numexpr"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/n/numexpr/numexpr-${version}.tar.gz"
|
|
checksum=dfa2fad1af040e93a8022fbe4437f2183bf80e5f64d466381ad589308a73565b
|
|
|
|
pre_build() {
|
|
sed -i '/^#!/d' numexpr/cpuinfo.py
|
|
}
|
|
post_install() {
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
python3.4-numexpr_package() {
|
|
depends="python3.4-numpy"
|
|
pycompile_version="3.4"
|
|
pycompile_module="numexpr"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3.4
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
}
|