void-packages/srcpkgs/python-pycparser/template
2015-04-22 09:22:55 +02:00

36 lines
1 KiB
Bash

# Template file for 'python-pycparser'
pkgname=python-pycparser
version=2.12
revision=1
noarch=yes
wrksrc="pycparser-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
depends="python-ply"
pycompile_module="pycparser"
short_desc="Complete C99 parser in pure Python2"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/eliben/pycparser"
license="BSD"
distfiles="${PYPI_SITE}/p/pycparser/pycparser-${version}.tar.gz"
checksum=da24c80aeb3c794ac64fe5503a01f65f13fece3e02513fd2e0761f93c96597b0
post_install() {
# replace bundled copy of ply
for pyver in $python_versions; do
rm -rf ${DESTDIR}/usr/lib/python${pyver}/site-packages/pycparser/ply
ln -sf ../ply ${DESTDIR}/usr/lib/python${pyver}/site-packages/pycparser/ply
done
}
python3.4-pycparser_package() {
noarch=yes
depends="python3.4-ply"
pycompile_version="3.4"
pycompile_module="pycparser"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
}
}