void-packages/srcpkgs/python-pycparser/template
2021-10-09 08:00:22 -04:00

35 lines
1,016 B
Bash

# Template file for 'python-pycparser'
pkgname=python-pycparser
version=2.20
revision=2
wrksrc="pycparser-${version}"
build_style=python-module
pycompile_module="pycparser"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-ply"
short_desc="Complete C99 parser in pure Python (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/eliben/pycparser"
license="BSD-3-Clause"
distfiles="${PYPI_SITE}/p/pycparser/pycparser-${version}.tar.gz"
checksum=2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0
post_install() {
# replace bundled copy of ply
for pyver in $py2_ver $py3_ver; 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-pycparser_package() {
depends="python3-ply"
pycompile_module="pycparser"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}