From 036d8c7edbc725863948727971c9eb38dca3176b Mon Sep 17 00:00:00 2001 From: gabry Date: Mon, 26 Jan 2026 15:15:47 +0100 Subject: [PATCH] add some update-desktop-database --- heroic-games-launcher.recipe.py | 4 ++++ nautilus.recipe.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/heroic-games-launcher.recipe.py b/heroic-games-launcher.recipe.py index 74c2798..8ab0f0a 100644 --- a/heroic-games-launcher.recipe.py +++ b/heroic-games-launcher.recipe.py @@ -34,3 +34,7 @@ build = [ # Cleanup f"rm -rf {fembuilddir}" ] + +triggers = [ + f"update-desktop-database" +] \ No newline at end of file diff --git a/nautilus.recipe.py b/nautilus.recipe.py index fce8eba..cdb535c 100644 --- a/nautilus.recipe.py +++ b/nautilus.recipe.py @@ -21,7 +21,6 @@ build = [ f"cd {builddir}/build && DESTDIR={destdir} ninja install", f"install -v -d -m755 {destdir}/usr/share/licenses/{pkgname}/", - f"install -v -d -m755 {destdir}/usr/share/applications && wget https://rocketleaguechatp.duckdns.org/nautilus.desktop -O {destdir}/usr/share/applications/nautilus.desktop", f"install -v -m644 {builddir}/LICENSE {destdir}/usr/share/licenses/{pkgname}/LICENSE", # Make tarball + manifests @@ -33,5 +32,6 @@ build = [ ] triggers = [ - f"glib-compile-schemas /usr/share/glib-2.0/schemas" + f"glib-compile-schemas /usr/share/glib-2.0/schemas", + f"updte-desktop-database" ]