forked from brl/citadel
Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
44 lines
1.4 KiB
BlitzBasic
44 lines
1.4 KiB
BlitzBasic
SUMMARY = "Location and timezone database and weather lookup library"
|
|
HOMEPAGE = "https://wiki.gnome.org/Projects/LibGWeather"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
GNOMEBASEBUILDCLASS = "meson"
|
|
|
|
inherit gnomebase meson pkgconfig gobject-introspection gettext features_check
|
|
|
|
SRC_URI[archive.sha256sum] = "ca4e8f2a4baaa9fc6d75d8856adb57056ef1cd6e55c775ba878ae141b6276ee6"
|
|
|
|
DEPENDS = "gtk+3 libxml2 libsoup-2.4 glib-2.0 python3-pygobject-native itstool-native geocode-glib glib-2.0-native"
|
|
|
|
# gobject-introspection is mandatory and cannot be configured
|
|
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
|
|
GIR_MESON_OPTION = ""
|
|
|
|
GTKDOC_MESON_OPTION = "gtk_doc"
|
|
|
|
FILES:${PN} += "${datadir}/glib-2.0/schemas"
|
|
|
|
|
|
SECTION ?= "x11/gnome"
|
|
|
|
FILES:${PN} += "${datadir}/application-registry \
|
|
${datadir}/mime-info \
|
|
${datadir}/mime/packages \
|
|
${datadir}/mime/application \
|
|
${datadir}/gnome-2.0 \
|
|
${datadir}/polkit* \
|
|
${datadir}/GConf \
|
|
${datadir}/glib-2.0/schemas \
|
|
${datadir}/appdata \
|
|
${datadir}/icons \
|
|
"
|
|
|
|
FILES:${PN}-doc += "${datadir}/devhelp"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${localstatedir}/lib/scrollkeeper/*
|
|
rm -rf ${D}${localstatedir}/scrollkeeper/*
|
|
rm -f ${D}${datadir}/applications/*.cache
|
|
}
|