cppzmq.mk 608 B

1234567891011121314151617181920212223
  1. #############################################################
  2. #
  3. # cppzmq
  4. #
  5. #############################################################
  6. CPPZMQ_VERSION = b232978
  7. CPPZMQ_SITE = git://github.com/zeromq/cppzmq.git
  8. CPPZMQ_INSTALL_STAGING = YES
  9. CPPZMQ_DEPENDENCIES = zeromq
  10. CPPZMQ_LICENSE = MIT
  11. # No license file, the license is in the installed header
  12. CPPZMQ_LICENSE_FILES = zmq.hpp
  13. define CPPZMQ_INSTALL_STAGING_CMDS
  14. $(INSTALL) -m 0644 -D $(@D)/zmq.hpp $(STAGING_DIR)/usr/include/zmq.hpp
  15. endef
  16. define CPPZMQ_UNINSTALL_STAGING_CMDS
  17. $(RM) $(STAGING_DIR)/usr/include/zmq.hpp
  18. endef
  19. $(eval $(generic-package))