29 lines
785 B
Bash
29 lines
785 B
Bash
# Template file for 'pex'
|
|
pkgname=pex
|
|
version=2.1.153
|
|
revision=1
|
|
build_style=python3-pep517
|
|
hostmakedepends="python3-flit_core python3-Sphinx"
|
|
depends="python3"
|
|
short_desc="Library & tool for generating .pex (Python EXecutable) files"
|
|
maintainer="icp <pangolin@vivaldi.net>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/pantsbuild/pex"
|
|
changelog="https://raw.githubusercontent.com/pantsbuild/pex/main/CHANGES.md"
|
|
distfiles="${PYPI_SITE}/p/pex/pex-${version}.tar.gz"
|
|
checksum=89d221b5a123997d455f62a06a4b37223359cfbea3094751ffdc35435047bb87
|
|
|
|
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
|
|
}
|