diff options
author | Maxim Cournoyer <[email protected]> | 2023-02-08 09:41:45 -0500 |
---|---|---|
committer | Maxim Cournoyer <[email protected]> | 2023-02-08 09:41:45 -0500 |
commit | d88cee1d44a475b6ea276e87a4c98682255b881e (patch) | |
tree | f2e681b5211840d4eef688120041c2dd730002cc /gnu/packages/documentation.scm | |
parent | d2b9b4b861b71d11eaeaa12fe544c9ffb0b6644d (diff) | |
parent | 20059f92a97726b40d4d74e67463a64c98d1da0d (diff) |
Merge branch 'master' into staging.
With conflicts resolved in:
gnu/packages/version-control.scm
Diffstat (limited to 'gnu/packages/documentation.scm')
-rw-r--r-- | gnu/packages/documentation.scm | 43 |
1 files changed, 20 insertions, 23 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm index 3ded8e1cac..b701f2936e 100644 --- a/gnu/packages/documentation.scm +++ b/gnu/packages/documentation.scm @@ -66,7 +66,7 @@ (define-public latex2html (package (name "latex2html") - (version "2020.2") + (version "2022.2") (source (origin (method git-fetch) @@ -76,29 +76,26 @@ (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1icyl6kl60wh7cavprgbd8q6lpjwr7wn24m34kpiif7ahknhcbcm")))) + (base32 "1z71anjzxy5jsdlaqba4w9spncc6iycldarnr2z1dq8xmk6yhpjn")))) (build-system gnu-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-configure - (lambda* (#:key outputs #:allow-other-keys) - (substitute* "configure" - (("/usr/local") - (assoc-ref outputs "out")) - (("\\$\\{CONFIG_SHELL-/bin/sh\\}") - (which "bash"))) - #t)) - (replace 'configure - (lambda _ - (invoke "./configure") - #t)) - (add-after 'configure 'patch-cfgcache - (lambda* (#:key outputs #:allow-other-keys) - (substitute* "cfgcache.pm" - (("/usr/local") - (assoc-ref outputs "out"))) - #t))))) + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-configure + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "configure" + (("/usr/local") + #$output) + (("\\$\\{CONFIG_SHELL-/bin/sh\\}") + (which "bash"))))) + (replace 'configure + (lambda _ + (invoke "./configure"))) + (add-after 'configure 'patch-cfgcache + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "cfgcache.pm" + (("/usr/local") + #$output))))))) (inputs (list perl)) (synopsis "LaTeX documents to HTML") @@ -254,7 +251,7 @@ and to some extent D.") (build-system gnu-build-system) (native-inputs (list flex gettext-minimal)) - (home-page "http://docpp.sourceforge.net/") + (home-page "https://docpp.sourceforge.net") (synopsis "Documentation system for C, C++, IDL, and Java") (description "DOC++ is a documentation system for C, C++, IDL, and Java. It can |