void-packages/srcpkgs/python-tables/template
Alessio Sergi fef884fa0d python-tables: don't build with -march=native
While I'm here:
- add missing bdeps
- install bin scripts
2016-04-07 17:41:47 +02:00

43 lines
1.3 KiB
Bash

# Template file for 'python-tables'
pkgname=python-tables
version=3.2.2
revision=2
wrksrc="${pkgname#*-}-${version}"
build_style=python-module
python_versions="2.7 3.4"
pycompile_module="tables"
# XXX: c-blosc (using internal for now)
hostmakedepends="python-setuptools python3.4-setuptools"
makedepends="python-devel python3.4-devel python-numpy python3.4-numpy
python-Cython python3.4-Cython hdf5-devel lzo-devel bzip2-devel"
depends="python-numpy python-numexpr"
short_desc="Hierarchical datasets for Python2"
maintainer="pulux <pulux@pf4sh.de>"
license="3-clause-BSD"
homepage="http://www.pytables.org/"
distfiles="${PYPI_SITE}/t/tables/tables-${version}.tar.gz"
checksum=3564b351a71ec1737b503b001eb7ceae1f65d5d6e3ffe1ea75aafba10f37fa84
pre_build() {
# don't build with -march=native
sed -i 's|"-march=native", ||' setup.py
}
post_install() {
for f in pt2to3 ptdump ptrepack pttree; do
cp -f ${DESTDIR}/usr/bin/${f}{,3.4}
replace_interpreter python ${DESTDIR}/usr/bin/${f}
done
vlicense LICENSE.txt LICENSE
}
python3.4-tables_package() {
pycompile_version="3.4"
pycompile_module="tables"
depends="python3.4-numpy python3.4-numexpr"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/bin/*3.4
vmove usr/lib/python3.4
vlicense LICENSE.txt LICENSE
}
}