void-packages/srcpkgs/pex/template
2020-07-28 08:26:41 +02:00

30 lines
846 B
Bash

# Template file for 'pex'
pkgname=pex
version=2.1.14
revision=1
archs=noarch
wrksrc="pex-${version}"
build_style=python3-module
hostmakedepends="python3-setuptools python3-Sphinx"
depends="python3-setuptools"
short_desc="Library & tool for generating .pex (Python EXecutable) files"
maintainer="Daniel Santana <daniel@santana.tech>"
license="Apache-2.0"
homepage="https://github.com/pantsbuild/pex"
changelog="https://raw.githubusercontent.com/pantsbuild/pex/master/CHANGES.rst"
distfiles="${PYPI_SITE}/p/pex/pex-${version}.tar.gz"
checksum=de5e553086cf65241beee7c1f06b30867149511fa6e48c8d4493305c7ddaf69b
post_build() {
PYTHONPATH="$PWD" make -C docs man
}
post_install() {
vman docs/_build/man/pex.1
}
python3-pex_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - transitional dummy package"
build_style=meta
}