mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-21 05:57:05 +00:00
c01d05c2f9
Changelog: =========== - Drop support for libstemmer - Add font glob match for .ttc files - Do not veto the extension if the parent cannot be found - Include screenshot height in "too small" and "too large" error - Make the appdata filename check match the plugin globs - Remove Check for X-KDE-StartupNotify - Stop trying to convert Fedora licenses into SPDX - Support RFC9512 registration for application/yaml Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
40 lines
1.0 KiB
BlitzBasic
40 lines
1.0 KiB
BlitzBasic
SUMMARY = "Objects and helper methods to help reading and writing AppStream metadata"
|
|
HOMEPAGE = "https://people.freedesktop.org/~hughsient/appstream-glib/index.htm"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
DEPENDS = " \
|
|
curl \
|
|
gperf-native \
|
|
glib-2.0 \
|
|
gtk+3 \
|
|
libyaml \
|
|
libarchive \
|
|
json-glib \
|
|
gdk-pixbuf \
|
|
freetype \
|
|
fontconfig \
|
|
libstemmer \
|
|
"
|
|
|
|
inherit meson gobject-introspection gettext bash-completion pkgconfig manpages
|
|
|
|
SRC_URI = "https://people.freedesktop.org/~hughsient/${BPN}/releases/${BP}.tar.xz"
|
|
SRC_URI[sha256sum] = "84754064c560fca6e1ab151dc64354fc235a5798f016b91b38c9617253a8cf11"
|
|
|
|
EXTRA_OEMESON = " \
|
|
-Drpm=false \
|
|
"
|
|
|
|
PACKAGECONFIG ?= ""
|
|
PACKAGECONFIG[manpages] = "-Dman=true,-Dman=false,docbook-xml-dtd4-native docbook-xsl-stylesheets-native libxslt-native"
|
|
|
|
FILES:${PN} += "${libdir}/asb-plugins-5"
|
|
|
|
FILES:${PN}-dev += " \
|
|
${datadir}/installed-tests \
|
|
${datadir}/gettext \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|