43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Template file for 'python-sympy'
|
|
pkgname=python-sympy
|
|
version=0.7.6.1
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="sympy-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
depends="python-mpmath"
|
|
pycompile_module="sympy"
|
|
short_desc="Computer algebra system for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://sympy.org/"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/s/sympy/sympy-${version}.tar.gz"
|
|
checksum=1fc272b51091aabe7d07f1bf9f0a47f3e28657fb2bec52bf3ef0e8f159f5f564
|
|
|
|
pre_build() {
|
|
sed -i '/^#!/d' sympy/{benchmarks/bench_symbench,utilities/tests/diagnose_imports}.py
|
|
}
|
|
post_install() {
|
|
# replace bundled copy of mpmath
|
|
for pyver in $python_versions; do
|
|
rm -rf ${DESTDIR}/usr/lib/python${pyver}/site-packages/sympy/mpmath
|
|
ln -sf ../../mpmath ${DESTDIR}/usr/lib/python${pyver}/site-packages/sympy/mpmath
|
|
done
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3.4-sympy_package() {
|
|
noarch=yes
|
|
depends="python3.4-mpmath"
|
|
pycompile_version="3.4"
|
|
pycompile_module="sympy"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vbin build-3.4/scripts-3.4/isympy isympy3
|
|
vman doc/man/isympy.1 isympy3.1
|
|
vmove usr/lib/python3.4
|
|
vlicense LICENSE
|
|
}
|
|
}
|