Andrew Geissler | 220dafd | 2023-10-04 10:18:08 -0500 | [diff] [blame] | 1 | SUMMARY = "A library to help create and query binary XML blobs" |
| 2 | HOMEPAGE = "https://github.com/hughsie/libxmlb" |
| 3 | LICENSE = "LGPL-2.1-only" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" |
| 5 | |
| 6 | SRC_URI = " \ |
| 7 | git://github.com/hughsie/libxmlb.git;branch=main;protocol=https \ |
| 8 | file://0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch \ |
| 9 | file://run-ptest \ |
| 10 | " |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 11 | SRCREV = "25a6384ad60f7e8550292e6cb4f262cc5da74be4" |
Andrew Geissler | 220dafd | 2023-10-04 10:18:08 -0500 | [diff] [blame] | 12 | S = "${WORKDIR}/git" |
| 13 | |
| 14 | DEPENDS = "glib-2.0 xz zstd" |
| 15 | |
| 16 | inherit gobject-introspection gtk-doc meson ptest-gnome lib_package pkgconfig |
| 17 | |
| 18 | PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}" |
| 19 | PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false" |
| 20 | |
| 21 | GTKDOC_MESON_OPTION = "gtkdoc" |
| 22 | |
| 23 | FILES:${PN} += "${datadir}" |
| 24 | |
| 25 | BBCLASSEXTEND = "native" |