28 lines
759 B
Bash
28 lines
759 B
Bash
# Template file for 'python3-pyzmq'
|
|
pkgname=python3-pyzmq
|
|
version=19.0.2
|
|
revision=3
|
|
wrksrc="pyzmq-${version}"
|
|
build_style=python3-module
|
|
make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends="pkg-config python3-devel
|
|
python3-Cython zeromq-devel"
|
|
makedepends="${hostmakedepends/pkg-config/}"
|
|
short_desc="Python3 bindings for the ZeroMQ messaging library"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="LGPL-3.0-or-later, BSD-3-Clause"
|
|
homepage="https://pyzmq.readthedocs.io/"
|
|
distfiles="https://github.com/zeromq/pyzmq/archive/v${version}.tar.gz"
|
|
checksum=ed67b5ffe8a87c88c5a19bf6f2d64ca7e3c325a2f6cc30f989f5f57d2205bada
|
|
|
|
pre_build() {
|
|
cat > setup.cfg <<-EOF
|
|
[global]
|
|
skip_check_zmq = True
|
|
EOF
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING.BSD
|
|
}
|