33 lines
908 B
Bash
33 lines
908 B
Bash
# Template file for 'python-pyzmq'
|
|
pkgname=python-pyzmq
|
|
version=17.0.0
|
|
revision=1
|
|
wrksrc="pyzmq-${version}"
|
|
build_style=python-module
|
|
make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"
|
|
pycompile_module="zmq"
|
|
hostmakedepends="pkg-config python-devel python3-devel python-Cython
|
|
python3-Cython zeromq-devel"
|
|
makedepends="${hostmakedepends/pkg-config/}"
|
|
short_desc="Python2 bindings for the ZeroMQ messaging library"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://pyzmq.readthedocs.io/"
|
|
license="LGPL-3.0-or-later, BSD-3-Clause"
|
|
distfiles="https://github.com/zeromq/pyzmq/archive/v${version}.tar.gz"
|
|
checksum=e6c6394bfe32e81b4ccb917fe24c3d7637c894f3c5f4698ccac513bda1f675d9
|
|
|
|
pre_build() {
|
|
cat > setup.cfg <<-EOF
|
|
[global]
|
|
skip_check_zmq = True
|
|
EOF
|
|
}
|
|
|
|
python3-pyzmq_package() {
|
|
pycompile_module="zmq"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|