gnu: emacs-tempel: Add info doc.

* gnu/packages/emacs-xyz.scm (emacs-tempel): Build documentation info
file.
[arguments]<#:phases>: Add makeinfo.
[native-inputs]: Add texinfo.

Change-Id: I2135918085ea45888717fae859c892fdc9b14151
Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
Cayetano Santos 2025-07-09 16:41:26 +02:00 committed by Hilton Chain
parent ccf2d22194
commit 50f5419315
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -20949,8 +20949,18 @@ been adapted to also work with mu4e.")
"104wifdqglk6hxs6z3gr6rmxf3hdqsl3y9bvcp3wwm10yqkpnmkx"))))
(build-system emacs-build-system)
(arguments
;; no tests
`(#:tests? #f))
(list
#:tests? #f ;no tests
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'makeinfo
(lambda _
(invoke "emacs"
"--batch"
"--eval=(require 'ox-texinfo)"
"--eval=(find-file \"README.org\")"
"--eval=(org-texinfo-export-to-info)"))))))
(native-inputs (list texinfo))
(propagated-inputs
(list emacs-compat))
(home-page "https://github.com/minad/tempel")