mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 13:39:49 +02:00
(From OE-Core rev: 7321cc17ae5483f17fe9cdffea7b62acd9d9c3a2) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
54 lines
1.7 KiB
BlitzBasic
54 lines
1.7 KiB
BlitzBasic
SUMMARY = "AppStream is a collaborative effort for making machine-readable software metadata easily available."
|
|
HOMEPAGE = "https://github.com/ximion/appstream"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=435ed639f84d4585d93824e7da3d85da"
|
|
|
|
DEPENDS = " \
|
|
appstream-native \
|
|
curl-native \
|
|
curl \
|
|
docbook-xml-dtd4-native \
|
|
gperf-native \
|
|
glib-2.0 \
|
|
libyaml \
|
|
libxml2 \
|
|
libxmlb \
|
|
libxslt-native \
|
|
itstool-native \
|
|
docbook-xsl-stylesheets-native \
|
|
python3-pygments-native \
|
|
"
|
|
|
|
inherit meson gobject-introspection gettext gi-docgen pkgconfig vala
|
|
|
|
GIR_MESON_OPTION = "gir"
|
|
GIDOCGEN_MESON_OPTION = "apidocs"
|
|
|
|
SRC_URI = " \
|
|
https://www.freedesktop.org/software/appstream/releases/AppStream-${PV}.tar.xz \
|
|
file://0001-remove-hardcoded-path.patch \
|
|
file://0002-Do-not-build-qt-tests.patch \
|
|
file://0003-Fix-PACKAGE_PREFIX_DIR-in-qt-cmake-AppStreamQtConfig.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "ce0ed29e89abd5f0cf790ea87d792f1967c3413060beb30e63a979578d975121"
|
|
|
|
S = "${UNPACKDIR}/AppStream-${PV}"
|
|
|
|
PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
|
|
|
PACKAGECONFIG[systemd] = "-Dsystemd=true,-Dsystemd=false,systemd"
|
|
PACKAGECONFIG[stemming] = "-Dstemming=true,-Dstemming=false,libstemmer"
|
|
PACKAGECONFIG[qt6] = "-Dqt=true,-Dqt=false,qtbase"
|
|
|
|
FILES:${PN} += "${datadir}"
|
|
|
|
EXTRA_OEMESON += "${@bb.utils.contains('GI_DATA_ENABLED', 'True', '-Dvapi=true', '-Dvapi=false', d)}"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
# Fix meson not finding the Qt build tools in cross-compilation
|
|
# setups. See: https://github.com/mesonbuild/meson/issues/13018
|
|
do_configure:prepend:class-target() {
|
|
export PATH=${STAGING_DIR_NATIVE}${libexecdir}:$PATH
|
|
}
|