diff options
author | Ross Burton <ross@burtonini.com> | 2021-11-12 17:16:55 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-11-13 01:17:26 -0800 |
commit | c10e76aa19888d253505a8f8d509b66b0f79bee9 (patch) | |
tree | 8842ce7c646fad626dad7fecab101945bfca7733 /meta-oe/recipes-gnome | |
parent | cb1968b5410fa415f5c6c70264ce83c4112b6d4d (diff) | |
download | meta-openembedded-c10e76aa19888d253505a8f8d509b66b0f79bee9.tar.gz |
libxmlb: put binary into separate package
xb-tool is for debugging purposes only and isn't needed in normal use.
Inherit lib_package so the binary isn't installed by default.
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-gnome')
-rw-r--r-- | meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb b/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb index 7feb209e0..9b3a343b8 100644 --- a/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb +++ b/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb | |||
@@ -8,7 +8,7 @@ SRC_URI = "git://github.com/hughsie/libxmlb.git;branch=main;protocol=https \ | |||
8 | SRCREV = "5108556a17bb1c2863c2ca5df088143ea65474a3" | 8 | SRCREV = "5108556a17bb1c2863c2ca5df088143ea65474a3" |
9 | S = "${WORKDIR}/git" | 9 | S = "${WORKDIR}/git" |
10 | 10 | ||
11 | inherit gobject-introspection gtk-doc meson ptest-gnome | 11 | inherit gobject-introspection gtk-doc meson ptest-gnome lib_package |
12 | 12 | ||
13 | PACKAGECONFIG ??= "\ | 13 | PACKAGECONFIG ??= "\ |
14 | ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ | 14 | ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ |
@@ -16,3 +16,5 @@ PACKAGECONFIG ??= "\ | |||
16 | PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false" | 16 | PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false" |
17 | 17 | ||
18 | GTKDOC_MESON_OPTION = "gtkdoc" | 18 | GTKDOC_MESON_OPTION = "gtkdoc" |
19 | |||
20 | FILES:${PN}-bin += "${libexecdir}/*" | ||