ce6b23a2ee
Tarball download from github is preferred, because: - download size is smaller - git clone may be blocked in some corporate environments Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 lines
547 B
Makefile
19 lines
547 B
Makefile
################################################################################
|
|
#
|
|
# cppzmq
|
|
#
|
|
################################################################################
|
|
|
|
CPPZMQ_VERSION = 235803740753312576495301ebf5b8ed76407173
|
|
CPPZMQ_SITE = $(call github,zeromq,cppzmq,$(CPPZMQ_VERSION))
|
|
CPPZMQ_INSTALL_STAGING = YES
|
|
CPPZMQ_DEPENDENCIES = zeromq
|
|
CPPZMQ_LICENSE = MIT
|
|
CPPZMQ_LICENSE_FILES = LICENSE
|
|
|
|
define CPPZMQ_INSTALL_STAGING_CMDS
|
|
$(INSTALL) -m 0644 -D $(@D)/zmq.hpp $(STAGING_DIR)/usr/include/zmq.hpp
|
|
endef
|
|
|
|
$(eval $(generic-package))
|