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" ]