mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Fixes: ----------- module_index test now passes if RPM library is built without bzip2 or xz compression support and libmodulemd is configured to support decompression using the RPM library. (From OE-Core rev: e5b3a65b88bd0546d6082d59d1c41505c4efc32d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
871 B
BlitzBasic
25 lines
871 B
BlitzBasic
SUMMARY = "C Library for manipulating module metadata files"
|
|
HOMEPAGE = "https://github.com/fedora-modularity/libmodulemd"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=25a3927bff3ee4f5b21bcb0ed3fcd6bb"
|
|
|
|
SRC_URI = "git://github.com/fedora-modularity/libmodulemd;protocol=https;branch=main;tag=${PV}"
|
|
|
|
SRCREV = "b8b11b4dafaa2c4d73883152bfa7e5bd81cd7395"
|
|
|
|
inherit meson gobject-introspection pkgconfig manpages
|
|
|
|
EXTRA_OEMESON = "-Dwith_py3=false -Dwith_docs=false -Drpmio=disabled -Dgobject_overrides_dir_py3=${PYTHON_SITEPACKAGES_DIR}/gi/overrides"
|
|
|
|
DEPENDS += "glib-2.0 libyaml glib-2.0-native"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
GIR_MESON_OPTION = 'skip_introspection'
|
|
GIR_MESON_ENABLE_FLAG = 'false'
|
|
GIR_MESON_DISABLE_FLAG = 'true'
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[manpages] = "-Dwith_manpages=enabled,-Dwith_manpages=disabled"
|