37 lines
911 B
Bash
37 lines
911 B
Bash
|
# Template file for 'python-mpmath'
|
||
|
pkgname=python-mpmath
|
||
|
version=0.19
|
||
|
revision=1
|
||
|
noarch=yes
|
||
|
wrksrc="mpmath-${version}"
|
||
|
build_style=python-module
|
||
|
python_versions="2.7 3.4"
|
||
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
||
|
depends="python"
|
||
|
pycompile_module="mpmath"
|
||
|
short_desc="Python2 library for arbitrary-precision floating-point arithmetic"
|
||
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||
|
homepage="http://mpmath.org/"
|
||
|
license="3-clause-BSD"
|
||
|
distfiles="${PYPI_SITE}/m/mpmath/mpmath-${version}.tar.gz"
|
||
|
checksum=68ddf6426dcda445323467d89892d2cffbbd1ae0b31ac1241b1b671749d63222
|
||
|
|
||
|
pre_build() {
|
||
|
sed -i '/^#!/d' mpmath/{matrices,tests}/*.py
|
||
|
}
|
||
|
post_install() {
|
||
|
vlicense LICENSE
|
||
|
}
|
||
|
|
||
|
python3.4-mpmath_package() {
|
||
|
noarch=yes
|
||
|
depends="python3.4"
|
||
|
pycompile_version="3.4"
|
||
|
pycompile_module="mpmath"
|
||
|
short_desc="${short_desc/Python2/Python3.4}"
|
||
|
pkg_install() {
|
||
|
vmove usr/lib/python3.4
|
||
|
vlicense LICENSE
|
||
|
}
|
||
|
}
|