void-packages/srcpkgs/python-decorator/template

33 lines
920 B
Bash

# Template file for 'python-decorator'
pkgname=python-decorator
version=4.3.2
revision=1
archs=noarch
wrksrc="decorator-${version}"
build_style=python-module
pycompile_module="decorator.py"
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
short_desc="Python2 decorator module"
maintainer="Alessio Sergi <al3hex@gmail.com>"
license="BSD-2-Clause"
homepage="https://github.com/micheles/decorator"
changelog="https://raw.githubusercontent.com/micheles/decorator/master/CHANGES.md"
distfiles="https://github.com/micheles/decorator/archive/${version}.tar.gz"
checksum=c053ec881270608a5aef624a45a7700ec76ceca9d96689506411e1f319085380
post_install() {
vlicense LICENSE.txt LICENSE
}
python3-decorator_package() {
archs=noarch
depends="python3"
pycompile_module="decorator.py"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE.txt LICENSE
}
}