mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
8f3df8b447
- Automatically convert all licenses to valid SPDX license expressions using convert-spdx-licenses.py Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
27 lines
1.2 KiB
BlitzBasic
27 lines
1.2 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 = "CC0-1.0 AND LGPL-2.1-only AND 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 = "07d6c32c10fd63fad141cd0120314a055695de32"
|
|
|
|
SRC_URI = "git://github.com/linux-nvme/libnvme;protocol=https;branch=master;tag=v${PV}"
|
|
|
|
|
|
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"
|