-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2542 from linj-fork/mu4e-package.el
mu4e: make it conform with `package.el`
- Loading branch information
Showing
4 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,19 @@ mu4e_meta = configure_file( | |
install_dir: mu4e_lispdir, | ||
configuration: { | ||
'VERSION' : meson.project_version(), | ||
# project_build_root() with meson >= 0.56 | ||
'abs_top_builddir': join_paths(meson.current_build_dir()), | ||
'MU_DOC_DIR' : join_paths(datadir, 'doc', 'mu'), | ||
}) | ||
|
||
mu4e_pkg_desc = configure_file( | ||
input: 'mu4e-pkg.el.in', | ||
output: 'mu4e-pkg.el', | ||
install: true, | ||
install_dir: mu4e_lispdir, | ||
configuration: { | ||
'VERSION' : meson.project_version(), | ||
'EMACS_MIN_VERSION' : emacs_min_version, | ||
}) | ||
|
||
mu4e_srcs=[ | ||
'mu4e-actions.el', | ||
'mu4e-bookmarks.el', | ||
|
@@ -75,6 +83,17 @@ foreach src : mu4e_srcs | |
install_mode: 'r--r--r--') | ||
endforeach | ||
|
||
# this depends on the above hack: all mu4e elisp files needs to be in builddir | ||
mu4e_autoloads = configure_file( | ||
output: 'mu4e-autoloads.el', | ||
install: true, | ||
install_dir: mu4e_lispdir, | ||
command: [emacs, | ||
'--no-init-file', | ||
'--batch', | ||
'--load', 'package', | ||
'--eval', '(package-generate-autoloads "mu4e" "' + meson.current_build_dir() + '" )']) | ||
|
||
foreach src : mu4e_srcs | ||
target_name= '@[email protected]' | ||
target_path = join_paths(meson.current_build_dir(), target_name) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
;; -*- no-byte-compile: t; -*- | ||
(define-package "mu4e" "@VERSION@" | ||
"part of mu4e, the mu mail user agent" | ||
'((emacs "@EMACS_MIN_VERSION@")) | ||
:authors '(("Dirk-Jan C. Binnema" . "[email protected]")) | ||
:maintainer '("Dirk-Jan C. Binnema" . "[email protected]") | ||
:keywords '("email")) |