16705bc132
Add python3.4 flavor.
36 lines
998 B
Bash
36 lines
998 B
Bash
# Template file for 'python-pyelftools'
|
|
pkgname=python-pyelftools
|
|
version=0.24
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="pyelftools-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
pycompile_module="elftools"
|
|
hostmakedepends="python-devel python3.4-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.7"
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3.4-pyelftools_package() {
|
|
noarch=yes
|
|
pycompile_version="3.4"
|
|
pycompile_module="elftools"
|
|
depends="python3.4"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
alternatives="pyelftools:readelf:/usr/bin/readelf.py3.4"
|
|
pkg_install() {
|
|
vmove usr/bin/*3.4
|
|
vmove usr/lib/python3.4
|
|
vlicense LICENSE
|
|
}
|
|
}
|