From e56b987c21c47e60eb04b21cf95f9efa67efe6c5 Mon Sep 17 00:00:00 2001 From: Patrick Areny Date: Fri, 20 Aug 2021 16:01:11 +0200 Subject: [PATCH] libConfuse: Add recipe libconfuse a configuration file parser library written in C Used by bmon network monitor. Signed-off-by: Patrick Areny Signed-off-by: Khem Raj --- .../recipes-support/libconfuse/libconfuse_3.3.bb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 meta-networking/recipes-support/libconfuse/libconfuse_3.3.bb diff --git a/meta-networking/recipes-support/libconfuse/libconfuse_3.3.bb b/meta-networking/recipes-support/libconfuse/libconfuse_3.3.bb new file mode 100644 index 00000000000..c081e697900 --- /dev/null +++ b/meta-networking/recipes-support/libconfuse/libconfuse_3.3.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "libConfuse is a configuration file parser library" +LICENSE = "ISC" +LIC_FILES_CHKSUM = "file://LICENSE;md5=42fa47330d4051cd219f7d99d023de3a" + +SRCREV = "a42aebf13db33afd575da6e63f55163d371f776d" +SRC_URI = "git://github.com/libconfuse/libconfuse.git;branch=master" + +inherit autotools-brokensep pkgconfig gettext + +S = "${WORKDIR}/git" + +do_configure:prepend(){ + (cd ${S} && ${S}/autogen.sh) +}