mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 14:05:06 +00:00
Use PACKAGECONFIG to support liburing which is now disabled by default. Dropped patch which is now merged in the upstream. Changelog: https://github.com/linux-nvme/libnvme/releases/tag/v1.13 https://github.com/linux-nvme/libnvme/releases/tag/v1.14 https://github.com/linux-nvme/libnvme/releases/tag/v1.15 https://github.com/linux-nvme/libnvme/releases/tag/v1.16 https://github.com/linux-nvme/libnvme/releases/tag/v1.16.1 Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
1.1 KiB
BlitzBasic
27 lines
1.1 KiB
BlitzBasic
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 = "becae3d874b40bfedede672b4b2f58ae8c3be3b5"
|
|
|
|
SRC_URI = "git://github.com/linux-nvme/libnvme;protocol=https;branch=master"
|
|
|
|
|
|
inherit meson pkgconfig
|
|
|
|
PACKAGECONFIG ??= "keyutils openssl"
|
|
|
|
PACKAGECONFIG[keyutils] = "-Dkeyutils=enabled,-Dkeyutils=disabled,keyutils"
|
|
PACKAGECONFIG[openssl] = "-Dopenssl=enabled,-Dopenssl=disabled,openssl"
|
|
PACKAGECONFIG[python] = "-Dpython=enabled,-Dpython=disabled,python"
|
|
PACKAGECONFIG[liburing] = "-Dliburing=enabled,-Dliburing=disabled,liburing"
|