diff options
author | Markus Volk <f_l_k@t-online.de> | 2022-11-01 17:30:17 +0100 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-12-07 16:12:33 -0500 |
commit | 3fc29f569e10b2c6d3b0a5a2015bbdb7162063ca (patch) | |
tree | 4036e2f79e702902e05347112bf57c9ae92a15a7 | |
parent | 99e93d3f88ba1ba21c4d9bec01b07a6d68d7e0b2 (diff) | |
download | meta-virtualization-3fc29f569e10b2c6d3b0a5a2015bbdb7162063ca.tar.gz |
libvirt-glib: add recipe
libvirt-glib wraps libvirt to provide a high-level object-oriented API better
suited for glib-based applications, via three libraries:
- libvirt-glib - GLib main loop integration & misc helper APIs
- libvirt-gconfig - GObjects for manipulating libvirt XML documents
- libvirt-gobject - GObjects for managing libvirt objects
It is needed as a dependency for glib based projects that make use of libvirt e.g.
virt-manager, virt-viewer or gnome boxes.
Compilation was tested for x86_64, aarch64 and qemumips
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-extended/libvirt/libvirt-glib_4.0.0.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes-extended/libvirt/libvirt-glib_4.0.0.bb b/recipes-extended/libvirt/libvirt-glib_4.0.0.bb new file mode 100644 index 00000000..11ad84a1 --- /dev/null +++ b/recipes-extended/libvirt/libvirt-glib_4.0.0.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | DESCRIPTION = "A toolkit to interact with the virtualization capabilities of recent versions of Linux." | ||
2 | HOMEPAGE = "http://libvirt.org" | ||
3 | LICENSE = "LGPL-2.1-only" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
5 | |||
6 | DEPENDS = "glib-2.0 libvirt libxml2" | ||
7 | |||
8 | SRC_URI = "git://gitlab.com/libvirt/libvirt-glib;protocol=https;branch=master" | ||
9 | |||
10 | SRCREV = "940bd9ccbfe419573ddec4383e3def4aac1f0e1f" | ||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | inherit meson pkgconfig gobject-introspection vala | ||
14 | GIR_MESON_OPTION = '' | ||