[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: crm114: Use emacs-build-system install phase.
From: |
guix-commits |
Subject: |
01/02: gnu: crm114: Use emacs-build-system install phase. |
Date: |
Wed, 5 May 2021 04:06:41 -0400 (EDT) |
leoprikler pushed a commit to branch master
in repository guix.
commit c1036042a52ea25fa833b5b30d18b9f198b74727
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Tue May 4 10:36:51 2021 +0530
gnu: crm114: Use emacs-build-system install phase.
* gnu/packages/mail.scm (crm114)[arguments]: Install the crm114 emacs mode
using the install phase from emacs-build-system, instead of in the custom
pre-install phase. Run the make-autoloads phase after this new
install-emacs-mode phase.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
---
gnu/packages/mail.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 594c764..e5c3834 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4432,12 +4432,11 @@ score.")
;; Install mail related crm scripts.
(for-each (lambda (file)
(install-file file (string-append out "/bin")))
- (list "mailfilter.crm" "mailreaver.crm"
"mailtrainer.crm"))
- ;; Create emacs site-lisp directory so that the install phase
- ;; can install crm-mode.
- (mkdir-p (string-append out "/share/emacs/site-lisp")))))
+ (list "mailfilter.crm" "mailreaver.crm"
"mailtrainer.crm")))))
+ (add-after 'install 'install-emacs-mode
+ (assoc-ref emacs:%standard-phases 'install))
;; Run phases from the emacs build system.
- (add-after 'install 'make-autoloads
+ (add-after 'install-emacs-mode 'make-autoloads
(assoc-ref emacs:%standard-phases 'make-autoloads))
(add-after 'make-autoloads 'enable-autoloads-compilation
(assoc-ref emacs:%standard-phases 'enable-autoloads-compilation))