diff options
author | Markus Volk <f_l_k@t-online.de> | 2023-08-25 18:17:33 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-26 17:32:45 -0700 |
commit | 9882289b754a70209489de2a7a151d352dd30597 (patch) | |
tree | e8bc101ae55cc6349953e3cc03838ebcb5335282 | |
parent | 87f7eb0aedcd3f13c095e649de83fd1e7a70f9a6 (diff) | |
download | meta-openembedded-9882289b754a70209489de2a7a151d352dd30597.tar.gz |
spice-guest-vdagent: add recipe
The spice-vdagent needs to be running alongside qemu-guest-agent on
virtualizationguest systems that are using the spice protocol to
get seamless integration.
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-support/spice/spice-guest-vdagent_0.22.1.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/spice/spice-guest-vdagent_0.22.1.bb b/meta-networking/recipes-support/spice/spice-guest-vdagent_0.22.1.bb new file mode 100644 index 0000000000..b51e03899f --- /dev/null +++ b/meta-networking/recipes-support/spice/spice-guest-vdagent_0.22.1.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Spice agent for Linux" | ||
2 | HOMEPAGE = "https://spice-space.org" | ||
3 | LICENSE = "GPL-3.0-only" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
5 | |||
6 | SRCREV = "aa08162f036840d3e33502dc0a836b03b9cec97c" | ||
7 | |||
8 | SRC_URI = "git://gitlab.freedesktop.org/spice/linux/vd_agent.git;protocol=https;branch=master" | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | |||
12 | ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" | ||
13 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
14 | |||
15 | inherit autotools pkgconfig features_check | ||
16 | |||
17 | DEPENDS = "glib-2.0 alsa-lib gtk4 dbus libdrm spice-protocol" | ||
18 | |||
19 | EXTRA_OECONF = " \ | ||
20 | --with-gtk4 \ | ||
21 | --enable-pie \ | ||
22 | " | ||
23 | |||
24 | FILES:${PN} += "${datadir}" | ||
25 | |||