From 297018672c5b27f1c731a134c591039672b16258 Mon Sep 17 00:00:00 2001 From: Christophe Vu-Brugier Date: Thu, 27 Jul 2023 22:53:08 +0200 Subject: [PATCH] libnvme: add recipe Signed-off-by: Christophe Vu-Brugier Signed-off-by: Khem Raj --- .../recipes-support/libnvme/libnvme_1.5.bb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-oe/recipes-support/libnvme/libnvme_1.5.bb diff --git a/meta-oe/recipes-support/libnvme/libnvme_1.5.bb b/meta-oe/recipes-support/libnvme/libnvme_1.5.bb new file mode 100644 index 0000000000..4b6f1e30be --- /dev/null +++ b/meta-oe/recipes-support/libnvme/libnvme_1.5.bb @@ -0,0 +1,22 @@ +SUMMARY = "libnvme development C library" +DESCRIPTION = "\ +libnvme provides type definitions for NVMe specification structures, \ +enumerations, and bit fields, helper functions to construct, dispatch, \ +and decode commands and payloads, and utilities to connect, scan, and \ +manage nvme devices on a Linux system." +HOMEPAGE = "https://github.com/linux-nvme/${BPN}" +SECTION = "libs" +LICENSE = "LGPL-2.1-only & CC0-1.0 & MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \ + file://ccan/licenses/CC0;md5=c17af43b05840255a6fedc5eda9d56cc \ + file://ccan/licenses/BSD-MIT;md5=838c366f69b72c5df05c96dff79b35f2" +DEPENDS = "json-c" +SRCREV = "4fea83db8328ea788ea8f1001e8ce1cb80ef5fae" + +SRC_URI = "git://github.com/linux-nvme/libnvme;protocol=https;branch=master" + +S = "${WORKDIR}/git" + +inherit meson pkgconfig + +EXTRA_OEMESON += "-Dkeyutils=disabled -Dopenssl=disabled -Dpython=disabled"