void-packages/srcpkgs/python-pysocks/template
Alessio Sergi ddd3a7ea6c python-pysocks: add missing pycompile_module
'Custom' is not a license. License is 3-clause-BSD.
2017-06-25 12:38:13 +02:00

31 lines
814 B
Bash

# Template file for 'python-pysocks'
pkgname=python-pysocks
version=1.6.7
revision=2
noarch=yes
wrksrc="PySocks-${version}"
build_style=python-module
pycompile_module="socks.py sockshandler.py"
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
short_desc="Python2 SOCKS client module"
maintainer="Sir_Boops <admin@boops.me>"
license="3-clause-BSD"
homepage="https://github.com/Anorov/PySocks"
distfiles="https://github.com/Anorov/PySocks/archive/${version}.tar.gz"
checksum=267b0bf77c947a6209e9a5d55827da5e080305b5e69ac36f4ae8046e0a357da1
post_install() {
vlicense LICENSE
}
python3-pysocks_package() {
noarch=yes
depends="python3"
pycompile_module="socks.py sockshandler.py"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vlicense LICENSE
vmove usr/lib/python3*
}
}