From 45f4f6d3c48c27d36f4ea7942c7a0d98f6871a24 Mon Sep 17 00:00:00 2001 From: Bartłomiej Piotrowski Date: Tue, 17 Apr 2012 17:48:51 +0200 Subject: Add desktop file and appropriate lines to Makefile. --- Makefile | 4 ++++ sxiv.desktop | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 sxiv.desktop diff --git a/Makefile b/Makefile index 191a937..21be7f2 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,8 @@ clean: install: all @echo "installing executable file to $(DESTDIR)$(PREFIX)/bin" @install -D -m 755 sxiv $(DESTDIR)$(PREFIX)/bin/sxiv + @echo "installing desktop file to $(DESTDIR)$(PREFIX)/share/applications" + @install -D -m 0644 sxiv.desktop $(DESTDIR)$(PREFIX)/share/applications/sxiv.desktop @echo "installing manual page to $(DESTDIR)$(MANPREFIX)/man1" @mkdir -p $(DESTDIR)$(MANPREFIX)/man1 @sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1 @@ -49,5 +51,7 @@ install: all uninstall: @echo "removing executable file from $(DESTDIR)$(PREFIX)/bin" @rm -f $(DESTDIR)$(PREFIX)/bin/sxiv + @echo "removind desktop file from $(DESTDIR)$(PREFIX)/share/applications" + @rm -f $(DESTDIR)$(PREFIX)/share/applications/sxiv.desktop @echo "removing manual page from $(DESTDIR)$(MANPREFIX)/man1" @rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1 diff --git a/sxiv.desktop b/sxiv.desktop new file mode 100644 index 0000000..a981171 --- /dev/null +++ b/sxiv.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=sxiv +GenericName=Image Viewer +Exec=sxiv %F +MimeType=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;image/x-bmp; +NoDisplay=true -- cgit v1.2.3-54-g00ecf