void-packages/srcpkgs/python-pycparser/template
2015-06-10 20:06:19 +02:00

39 lines
1.1 KiB
Bash

# Template file for 'python-pycparser'
pkgname=python-pycparser
version=2.14
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=7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73
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
vlicense LICENSE
}
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
vlicense LICENSE
}
}