blob: 44860affc14d0897cba48f02958058b42aec39e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.14 2018/07/16 07:50:05 mef Exp $
PKGNAME= gnuradio-zeromq-${VERSION}
COMMENT= All of the zeromq blocks, utilities, and examples
# zmq.hpp: No such file or directory
# https://github.com/zeromq/cppzmq.git
#GIT_REPOSITORIES= master
#GIT_REPO.master= https://github.com/zeromq/cppzmq.git
#GIT_MODULE.master= cppzmq
# for work around, the file is copied to files directory
.include "../../ham/gnuradio-core/Makefile.common"
.include "../../ham/gnuradio-core/Nocore.mk"
CMAKE_ARGS+= -DENABLE_DEFAULT=False
CMAKE_ARGS+= -DENABLE_GR_ZEROMQ=True
CMAKE_ARGS+= -DZEROMQ_INCLUDE_DIRS=${PREFIX}/include
post-patch:
${CP} ${PKGDIR}/files/zmq.hpp ${WRKSRC}/gr-zeromq/include/
.include "../../net/zeromq/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|