From ed454888070c99cafa32770847b0e5ddee152b00 Mon Sep 17 00:00:00 2001 From: Marcelo Jorge Vieira Date: Thu, 17 Oct 2024 21:29:25 -0300 Subject: [PATCH] Fix uninstall icons --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 390e5a8..b067708 100644 --- a/Makefile +++ b/Makefile @@ -35,10 +35,10 @@ install-resources: uninstall: rm $(DESTDIR)$(PREFIX)/bin/nvim-gtk rm -r $(DESTDIR)$(PREFIX)/share/nvim-gtk/ - rm $(DESTDIR)$(PREFIX)/share/applications/org.daa.NeovimGtk.desktop - rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/org.daa.NeovimGtk.png - rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/org.daa.NeovimGtk.png - rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/desktop/org.daa.NeovimGtk.svg - rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/symbolic/apps/desktop/org.daa.NeovimGtk-symbolic.svg + rm $(DESTDIR)$(PREFIX)/share/applications/com.github.Lyude.neovim-gtk.desktop + rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/com.github.Lyude.neovim-gtk.png + rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/com.github.Lyude.neovim-gtk.png + rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/desktop/com.github.Lyude.neovim-gtk.svg + rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/symbolic/apps/desktop/com.github.Lyude.neovim-gtk-symbolic.svg .PHONY: all clean test uninstall