mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: bigloo: Install Emacs modes.
* gnu/packages/scheme.scm (bigloo): Add `install-emacs-modes' phase.
This commit is contained in:
parent
01e11826bc
commit
0e7aac44da
1 changed files with 9 additions and 1 deletions
|
@ -150,7 +150,15 @@ (define-public bigloo
|
|||
(find-files "gc" "^install-gc"))
|
||||
(("/bin/rm") (which "rm"))
|
||||
(("/bin/mv") (which "mv"))))
|
||||
%standard-phases))))
|
||||
(alist-cons-after
|
||||
'install 'install-emacs-modes
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(dir (string-append out "/share/emacs/site-lisp")))
|
||||
(zero? (system* "make" "-C" "bmacs" "all" "install"
|
||||
(string-append "EMACSBRAND=emacs24")
|
||||
(string-append "EMACSDIR=" dir)))))
|
||||
%standard-phases)))))
|
||||
(inputs
|
||||
`(("emacs" ,emacs)
|
||||
("patch/shebangs" ,(search-patch "bigloo-gc-shebangs.patch"))))
|
||||
|
|
Loading…
Reference in a new issue