kumquat-buildroot/package/azmq/azmq.mk
RJ Ascani 2fdc07c335 azmq: Add new package
The azmq library provides Boost Asio style bindings for ZeroMQ. This
library is built on top of ZeroMQ's standard C interface and is intended
to work well with C++ applications which use the Boost libraries in
general, and Asio in particular.

Signed-off-by: RJ Ascani <rj.ascani@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2017-08-03 09:12:13 +02:00

19 lines
509 B
Makefile

################################################################################
#
# azmq
#
################################################################################
AZMQ_VERSION = v1.0
AZMQ_SITE = $(call github,zeromq,azmq,$(AZMQ_VERSION))
AZMQ_DEPENDENCIES = boost zeromq
AZMQ_LICENSE = BSL-1.0
AZMQ_LICENSE_FILES = LICENSE-BOOST_1_0
# AZMQ is a header only library, so it does not need to be installed on the
# target.
AZMQ_INSTALL_STAGING = YES
AZMQ_INSTALL_TARGET = NO
$(eval $(cmake-package))