From 84704dd28c3fbf50053afe26cfdf81539668c10a Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 26 Jun 2016 00:33:16 -0400 Subject: Add .desktop files for emacsmail and emacsterm --- Makefile | 17 ++++++++--------- emacsmail.desktop | 11 +++++++++++ emacsterm.desktop | 10 ++++++++++ 3 files changed, 29 insertions(+), 9 deletions(-) create mode 100644 emacsmail.desktop create mode 100644 emacsterm.desktop diff --git a/Makefile b/Makefile index 8fc2ada..b3c7379 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,6 @@ -DESTDIR= -prefix=/usr/local -exec_prefix=$(prefix) -bindir=$(exec_prefix)/bin - bash=/usr/bin/env bash EDIT = { m4 -P | sed -e 's|@bash@|$(bash)|g' -e 's|@VERSION@|$(VERSION)|'; } -INSTALL_PROGRAM = install -Dm755 -RM = rm -f PACKAGE = emacsutils VERSION = 0.9 @@ -26,15 +19,21 @@ else -include .srcfiles.mk endif -std.out_files = ediff emacsmail emacsterm emacsterm-rxvt emacsterm-xterm -std.sys_files = $(addprefix $(bindir)/,$(std.out_files)) +programs = ediff emacsmail emacsterm emacsterm-rxvt emacsterm-xterm +desktops = emacsmail emacsterm +std.out_files = $(programs) $(addsuffix .desktop,$(desktops)) +std.sys_files = $(addprefix $(bindir)/,$(programs)) $(foreach d,$(desktops),$(datarootdir)/applications/$d.desktop) std.clean_files += *.sh %.sh: %.sh.in common.sh.in .var.bash .var.VERSION $(EDIT) < $< > $@ $(DESTDIR)$(bindir)/%: % + $(NORMAL_INSTALL) $(INSTALL_PROGRAM) $< $@ +$(DESTDIR)$(datarootdir)/applications/%: % + $(NORMAL_INSTALL) + $(INSTALL_DATA) $< $@ .var.%: FORCE @printf '%s' '$($*)' | sed 's|^|#|' | $(WRITE_IFCHANGED) '$@' diff --git a/emacsmail.desktop b/emacsmail.desktop new file mode 100644 index 0000000..72d8f65 --- /dev/null +++ b/emacsmail.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Emacs Mail +Comment=Use Emacs to write emails +Exec=emacsmail -c %f +Icon=emacs +Type=Application +Terminal=false +StartupWMClass=Emacs + +Categories=Network;Office;Email; +MimeType=x-scheme-handler/mailto; diff --git a/emacsterm.desktop b/emacsterm.desktop new file mode 100644 index 0000000..e4acd4e --- /dev/null +++ b/emacsterm.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=Emacs Term +Comment=Use Emacs as a terminal emulator +Exec=emacsterm -c +Icon=emacs +Type=Application +Terminal=false +StartupWMClass=Emacs + +Categories=System;TerminalEmulator; -- cgit v1.2.3