aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jeffrey C. Ollie <jeff@ocjtech.us>2009-11-22 15:17:11 -0600
committerGravatar Carl Worth <cworth@cworth.org>2010-01-24 07:29:54 +1300
commit1bf121924d41e57ef6fdfc14c6ebe8ce9aa3f5e1 (patch)
tree416eb10b6e650ce75899361b0110a51fb3eb9232
parentc25bc03dc60846090d230cdad21e39faccce35ff (diff)
Add install target for notmuch.desktop file.
Add an install target that uses desktop-file-install to install the desktop file in the appropriate location. The location of the install can be modified by changing the desktop_dir variable. Signed-off-by: Jeffrey C. Ollie <jeff@ocjtech.us>
-rw-r--r--Makefile.local4
-rwxr-xr-xconfigure3
2 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.local b/Makefile.local
index d579242c..04bac838 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -43,6 +43,10 @@ install-emacs: install emacs
install -m0644 notmuch.el $(DESTDIR)$(emacs_lispdir)
install -m0644 notmuch.elc $(DESTDIR)$(emacs_lispdir)
+install-desktop:
+ install -d $(DESTDIR)$(desktop_dir)
+ desktop-file-install --mode 0644 --dir $(DESTDIR)$(desktop_dir) notmuch.desktop
+
install-bash:
install -d $(DESTDIR)$(bash_completion_dir)
install -m0644 contrib/notmuch-completion.bash \
diff --git a/configure b/configure
index d240b6ac..a2af672d 100755
--- a/configure
+++ b/configure
@@ -274,6 +274,9 @@ prefix = ${PREFIX}
# The directory to which emacs lisp files should be installed
emacs_lispdir=${emacs_lispdir}
+# The directory to which desktop files should be installed
+desktop_dir = \${prefix}/share/applications
+
# Whether the getline function is available (if not, then notmuch will
# build its own version)
HAVE_GETLINE = ${have_getline}