[oe-commits] [meta-openembedded] 01/04: nng: Add recipe

git at git.openembedded.org git at git.openembedded.org
Tue Feb 4 06:51:11 UTC 2020


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 14e92f26794fca66b5f7cc7459e2757d9e7bd833
Author: Tom Rini <trini at konsulko.com>
AuthorDate: Mon Feb 3 15:08:32 2020 -0500

    nng: Add recipe
    
    nng is the nanomsg project's rewrite of their libnanomsg library.  Just
    like nanomsg it is a socket library that provides several common
    communication patterns.
    
    Unlike nanomsg it does not normally provide a number of tools and we do
    not attempt to add them here.  We allow for optional mbedtls support.
    
    Signed-off-by: Tom Rini <trini at konsulko.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 .../recipes-connectivity/nanomsg/nng_1.2.5.bb       | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/meta-networking/recipes-connectivity/nanomsg/nng_1.2.5.bb b/meta-networking/recipes-connectivity/nanomsg/nng_1.2.5.bb
new file mode 100644
index 0000000..77be27f
--- /dev/null
+++ b/meta-networking/recipes-connectivity/nanomsg/nng_1.2.5.bb
@@ -0,0 +1,21 @@
+SUMMARY = "nanomsg-next-generation -- light-weight brokerless messaging"
+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."
+HOMEPAGE = "https://github.com/nanomsg/nng"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a19b15be6e844b39a54de2ef665bd6de"
+
+SECTION = "libs/networking"
+
+SRCREV = "53ae1a5ab37fdfc9ad5c236df3eaf4dd63f0fee9"
+
+SRC_URI = "git://github.com/nanomsg/nng.git;branch=v1.2.x"
+
+S = "${WORKDIR}/git"
+
+inherit cmake pkgconfig
+
+EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON"
+
+PACKAGECONFIG ??= ""
+
+PACKAGECONFIG[mbedtls] = "-DNNG_ENABLE_TLS=ON,-DNNG_ENABLE_TLS=OFF,mbedtls"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list