mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: emacs-epkg: Update to 3.3.2.
* gnu/packages/emacs-xyz.scm (emacs-epkg): Update to 3.3.2. [arguments]<#:phases>: Add phases to build documentation and follow upstream directory structure. [native-inputs]: Add TEXINFO.
This commit is contained in:
parent
00a7268afe
commit
0c5a58e34d
1 changed files with 25 additions and 3 deletions
|
@ -17018,7 +17018,7 @@ (define-public emacs-closql
|
|||
(define-public emacs-epkg
|
||||
(package
|
||||
(name "emacs-epkg")
|
||||
(version "3.3.1")
|
||||
(version "3.3.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -17027,9 +17027,31 @@ (define-public emacs-epkg
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0z9sz9ydfjzhawh4qip41h3vid1lslaf0h14hkjz9kx8fkrzib8a"))))
|
||||
(base32 "18kjp0f5ch4mpd6yrd83p73pw7ykp2lv5686is8vcvyyys53jrf1"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'make-info
|
||||
;; Documentation is located in "docs/".
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(with-directory-excursion "docs"
|
||||
(invoke "makeinfo" "-o" "epkg.info" "epkg.texi")
|
||||
(let ((info (string-append (assoc-ref outputs "out")
|
||||
"/share/info")))
|
||||
(install-file "epkg.info" info)))))
|
||||
(add-after 'make-info 'move-to-lisp-directory
|
||||
;; Source code is located in "lisp/".
|
||||
(lambda _
|
||||
(chdir "lisp")))
|
||||
(add-after 'expand-load-path 'add-el-dir-to-emacs-load-path
|
||||
(lambda _
|
||||
(setenv "EMACSLOADPATH"
|
||||
(string-append (getcwd)
|
||||
"/lisp:"
|
||||
(getenv "EMACSLOADPATH"))))))))
|
||||
(native-inputs
|
||||
(list texinfo))
|
||||
(propagated-inputs
|
||||
(list emacs-closql emacs-dash))
|
||||
(home-page "https://emacsmirror.net")
|
||||
|
|
Loading…
Reference in a new issue