mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: texi2html: Remove dependency on Gettext.
Partly fixes <http://bugs.gnu.org/18247>. * gnu/packages/texinfo.scm (texi2html)[source]: Add 'snippet' field.
This commit is contained in:
parent
51152cd125
commit
d759cf6774
1 changed files with 8 additions and 3 deletions
|
@ -24,7 +24,6 @@ (define-module (gnu packages texinfo)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages ncurses))
|
||||
|
||||
|
@ -79,9 +78,15 @@ (define-public texi2html
|
|||
(sha256
|
||||
(base32
|
||||
"1yprv64vrlcbksqv25asplnjg07mbq38lfclp1m5lj8cw878pag8"))
|
||||
(patches (list (search-patch "texi2html-document-encoding.patch")))))
|
||||
(patches
|
||||
(list (search-patch "texi2html-document-encoding.patch")))
|
||||
(snippet
|
||||
;; This file is modified by the patch above, but reset its
|
||||
;; timestamp so we don't trigger the rule to update PO files,
|
||||
;; which would require Gettext.
|
||||
;; See <http://bugs.gnu.org/18247>.
|
||||
'(utime "texi2html.pl" 0 0 0 0))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("gettext" ,gnu-gettext)))
|
||||
(inputs `(("perl" ,perl)))
|
||||
(home-page "http://www.nongnu.org/texi2html/")
|
||||
(synopsis "Convert Texinfo to HTML")
|
||||
|
|
Loading…
Reference in a new issue