mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: texlive-bbold: Fix build.
* gnu/packages/tex.scm (texlive-bbold)[arguments]<#:phases>: Add a phase to skip building documentation, which fails. [native-inputs]: Add TEXLIVE-ETOOLBOX. Change-Id: I32526808c121b6d5ab1eb167fecbde38d40d0979
This commit is contained in:
parent
b5e9be788f
commit
c1fbcc7489
1 changed files with 10 additions and 2 deletions
|
@ -61327,11 +61327,19 @@ (define-public texlive-bbold
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:build-targets #~(list "bbold.dtx")
|
(list #:build-targets #~(list "bbold.dtx")
|
||||||
#:tex-format "latex"))
|
#:tex-format "latex"
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; Building documentation, automatic when generating
|
||||||
|
;; runfiles, fails. Skip building it.
|
||||||
|
(add-after 'unpack 'skip-documentation
|
||||||
|
(lambda _
|
||||||
|
(substitute* "source/latex/bbold/bbold.dtx"
|
||||||
|
(("\\\\DocInput\\{bbold\\.dtx\\}") "")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list texlive-metafont
|
(list texlive-metafont
|
||||||
(texlive-updmap.cfg
|
(texlive-updmap.cfg
|
||||||
(list texlive-hypdoc))))
|
(list texlive-etoolbox texlive-hypdoc))))
|
||||||
(home-page "https://ctan.org/pkg/bbold")
|
(home-page "https://ctan.org/pkg/bbold")
|
||||||
(synopsis "Sans serif blackboard bold")
|
(synopsis "Sans serif blackboard bold")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue