void-packages/srcpkgs/python-pyelftools/template
Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

35 lines
932 B
Bash

# Template file for 'python-pyelftools'
pkgname=python-pyelftools
version=0.24
revision=3
noarch=yes
wrksrc="pyelftools-${version}"
build_style=python-module
pycompile_module="elftools"
hostmakedepends="python-devel python3-devel"
depends="python"
short_desc="Python2 library for parsing ELF and DWARF"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/eliben/pyelftools"
license="Public Domain"
distfiles="${PYPI_SITE}/p/pyelftools/pyelftools-${version}.tar.gz"
checksum=e9dd97d685a5b96b88a988dabadb88e5a539b64cd7d7927fac9a7368dc4c459c
alternatives="pyelftools:readelf:/usr/bin/readelf.py2"
post_install() {
vlicense LICENSE
}
python3-pyelftools_package() {
noarch=yes
pycompile_module="elftools"
depends="python3"
short_desc="${short_desc/Python2/Python3}"
alternatives="pyelftools:readelf:/usr/bin/readelf.py3"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE
}
}