1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: latex2html: Update to 2024.

* gnu/packages/documentation.scm (latex2html): Update to 2024.

Change-Id: I618acb3959d088ef815a2c3c1cc8f87a6f1eac8e
This commit is contained in:
Aaron Covrig 2024-10-13 09:52:27 -04:00 committed by Zheng Junjie
parent d1d2759ae1
commit ef678e1acd
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -72,21 +72,20 @@
(define-public latex2html (define-public latex2html
(package (package
(name "latex2html") (name "latex2html")
(version "2022.2") (version "2024")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (uri (git-reference
(git-reference
(url "https://github.com/latex2html/latex2html") (url "https://github.com/latex2html/latex2html")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1z71anjzxy5jsdlaqba4w9spncc6iycldarnr2z1dq8xmk6yhpjn")))) (base32 "1h5ya6pvh87y7xf5c05plbvm35qnn5qd0fllnhp5kym43zmr4prh"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
(list #:phases (list
#~(modify-phases %standard-phases #:phases #~(modify-phases %standard-phases
(add-after 'unpack 'patch-configure (add-after 'unpack 'patch-configure
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(substitute* "configure" (substitute* "configure"
@ -102,8 +101,7 @@
(substitute* "cfgcache.pm" (substitute* "cfgcache.pm"
(("/usr/local") (("/usr/local")
#$output))))))) #$output)))))))
(inputs (inputs (list perl))
(list perl))
(synopsis "LaTeX documents to HTML") (synopsis "LaTeX documents to HTML")
(description "LaTeX2HTML is a utility that converts LaTeX documents to web (description "LaTeX2HTML is a utility that converts LaTeX documents to web
pages in HTML.") pages in HTML.")