void-packages/srcpkgs/python-ply/template
2015-09-04 21:09:37 +02:00

34 lines
854 B
Bash

# Template file for 'python-ply'
pkgname=python-ply
version=3.7
revision=1
noarch=yes
wrksrc="ply-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
depends="python"
pycompile_module="ply"
short_desc="Lex and Yacc for Python2"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="http://www.dabeaz.com/ply/"
license="3-clause-BSD"
distfiles="http://www.dabeaz.com/ply/ply-${version}.tar.gz"
checksum=f85fb7b44c1c9a04873e6d76fa2c2eef43f2cfd81468aa714a9c63af7ae0af80
post_install() {
sed -n '/Copyright/,/POSSIBILITY/p' README.md >LICENSE
vlicense LICENSE
}
python3.4-ply_package() {
noarch=yes
depends="python3.4"
pycompile_version="3.4"
pycompile_module="ply"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
vlicense LICENSE
}
}