Files
openwrt_yocto/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus_45.2.1.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

60 lines
1.7 KiB
BlitzBasic

SUMMARY = "File manager for GNOME"
SECTION = "x11/gnome"
LICENSE="GPL-3.0-only"
LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504"
DEPENDS = " \
appstream-glib-native \
desktop-file-utils-native \
glib-2.0 \
gnome-autoar \
gnome-desktop \
gtk4 \
libadwaita \
libcloudproviders \
libhandy \
libportal \
libxml2 \
tracker \
"
inherit gnomebase gsettings gobject-introspection gi-docgen gettext features_check mime-xdg gtk-icon-cache
SRC_URI[archive.sha256sum] = "ba5d53df39a155562df971ef5e31e827074905d0c48eab1eb2421a10284b990d"
REQUIRED_DISTRO_FEATURES = "x11 opengl gobject-introspection-data"
GIDOCGEN_MESON_OPTION = "docs"
GIDOCGEN_MESON_ENABLE_FLAG = 'true'
GIDOCGEN_MESON_DISABLE_FLAG = 'false'
EXTRA_OEMESON += " \
-Dtests=none \
"
PACKAGECONFIG = "extensions"
PACKAGECONFIG[extensions] = "-Dextensions=true,-Dextensions=false, gexiv2 gstreamer1.0-plugins-base gdk-pixbuf"
PACKAGECONFIG[packagekit] = "-Dpackagekit=true,-Dpackagekit=false,packagekit"
do_install:prepend() {
sed -i -e 's|${B}/||g' ${B}/src/nautilus-enum-types.c
}
FILES:${PN} += " \
${datadir}/dbus-1 \
${datadir}/metainfo \
${datadir}/gnome-shell \
${datadir}/tracker3 \
"
# mandatory - not checked during configuration:
# | (org.gnome.Nautilus:863): GLib-GIO-ERROR **: 21:03:52.326: Settings schema 'org.freedesktop.Tracker.Miner.Files' is not installed
RDEPENDS:${PN} += "tracker-miners bubblewrap"
# This override is from gnomebase.bbclass. The original expects only a minor
# version in the version number, and it breaks if there is a patch version also.
def gnome_verdir(v):
return v.split(".")[0] or v