31 lines
820 B
Bash
31 lines
820 B
Bash
# Template file for 'python-decorator'
|
|
pkgname=python-decorator
|
|
version=4.2.1
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="decorator-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
pycompile_module="decorator.py"
|
|
short_desc="Python2 decorator module"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="https://github.com/micheles/decorator"
|
|
license="2-clause-BSD"
|
|
distfiles="${PYPI_SITE}/d/decorator/decorator-${version}.tar.gz"
|
|
checksum=7d46dd9f3ea1cf5f06ee0e4e1277ae618cf48dfb10ada7c8427cd46c42702a0e
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
python3-decorator_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="decorator.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
}
|