e6ea6b7865
There is no benefit in using the shortened git revision hash. On the contrary: the shorter the hash, the higher the risk of having collisions with another commit. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Samuel Martin <s.martin49@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
679 B
Makefile
24 lines
679 B
Makefile
################################################################################
|
|
#
|
|
# cppzmq
|
|
#
|
|
################################################################################
|
|
|
|
CPPZMQ_VERSION = b23297800389149ac37f19b7215fa4734d344998
|
|
CPPZMQ_SITE = git://github.com/zeromq/cppzmq.git
|
|
CPPZMQ_INSTALL_STAGING = YES
|
|
CPPZMQ_DEPENDENCIES = zeromq
|
|
CPPZMQ_LICENSE = MIT
|
|
# No license file, the license is in the installed header
|
|
CPPZMQ_LICENSE_FILES = zmq.hpp
|
|
|
|
define CPPZMQ_INSTALL_STAGING_CMDS
|
|
$(INSTALL) -m 0644 -D $(@D)/zmq.hpp $(STAGING_DIR)/usr/include/zmq.hpp
|
|
endef
|
|
|
|
define CPPZMQ_UNINSTALL_STAGING_CMDS
|
|
$(RM) $(STAGING_DIR)/usr/include/zmq.hpp
|
|
endef
|
|
|
|
$(eval $(generic-package))
|