nng_1.7.3.bb 896 B

12345678910111213141516171819202122
  1. SUMMARY = "nanomsg-next-generation -- light-weight brokerless messaging"
  2. DESCRIPTION = "NNG, like its predecessors nanomsg (and to some extent ZeroMQ), is a lightweight, broker-less library, offering a simple API to solve common recurring messaging problems, such as publish/subscribe, RPC-style request/reply, or service discovery."
  3. HOMEPAGE = "https://github.com/nanomsg/nng"
  4. SECTION = "libs/networking"
  5. LICENSE = "MIT"
  6. LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a41e579bb4326c21c774f8e51e41d8a3"
  7. SRC_URI = "git://github.com/nanomsg/nng.git;branch=main;protocol=https"
  8. SRCREV = "85fbe7f9e4642b554d0d97f2e3ff2aa12978691a"
  9. S = "${WORKDIR}/git"
  10. inherit cmake pkgconfig
  11. EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON -DNNG_ENABLE_NNGCAT=ON"
  12. PACKAGECONFIG ??= ""
  13. PACKAGECONFIG[mbedtls] = "-DNNG_ENABLE_TLS=ON,-DNNG_ENABLE_TLS=OFF,mbedtls"
  14. PACKAGES =+ "${PN}-tools"
  15. FILES:${PN}-tools = "${bindir}/*"