44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Template file for 'python-snakeoil'
|
|
pkgname=python-snakeoil
|
|
version=0.7.5
|
|
revision=1
|
|
wrksrc="snakeoil-${version}"
|
|
build_style=python-module
|
|
pycompile_module="snakeoil"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
makedepends="python-devel python3-devel"
|
|
short_desc="Python2 optimized versions of common python functionality"
|
|
maintainer="Toyam Cox <Vaelatern@voidlinux.eu>"
|
|
license="BSD, GPL-2"
|
|
homepage="https://github.com/pkgcore/snakeoil"
|
|
# changelog="https://github.com/pkgcore/snakeoil/blob/master/NEWS.rst"
|
|
distfiles="${PYPI_SITE}/s/snakeoil/snakeoil-${version}.tar.gz"
|
|
checksum=2cbcd8b39d0f05c76e734840ef87796b1acfd9dd4c6d352253a7b5b91be7f4c3
|
|
|
|
post_install() {
|
|
vlicense BSD
|
|
}
|
|
|
|
python-snakeoil-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include/python2.7
|
|
}
|
|
}
|
|
python3-snakeoil_package() {
|
|
pycompile_module="snakeoil"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense BSD
|
|
}
|
|
}
|
|
python3-snakeoil-devel_package() {
|
|
depends="python3-snakeoil>=${version}_${revision}"
|
|
short_desc="${short_desc/Python2/Python3} - development files"
|
|
pkg_install() {
|
|
vmove usr/include/python3*
|
|
}
|
|
}
|