void-packages/srcpkgs/python-path/template
2018-09-15 01:35:06 +02:00

36 lines
883 B
Bash

# Template file for 'python-path'
pkgname=python-path
version=11.1.0
revision=1
noarch=yes
wrksrc="path.py-${version}"
build_style=python-module
pycompile_module="path.py"
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
short_desc="Python2 module wrapper for os.path"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/jaraco/path.py"
license="MIT"
distfiles="${PYPI_SITE}/p/path.py/path.py-${version}.tar.gz"
checksum=cbcbb3ed71b42fb8df1bc7645ddde298817f1a51684c3f9b3101937bdb28ff79
pre_build() {
sed -e '/setuptools_scm/d' \
-e "s/use_scm_version=True,/version=\"${version}\",/" \
-i setup.py
}
post_install() {
vlicense LICENSE
}
python3-path_package() {
noarch=yes
depends="python3"
pycompile_module="path.py"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}