me
/
guix
Archived
1
0
Fork 0

gnu: texlive-latex-tools: Provide array-2016-10-06.sty.

* gnu/packages/tex.scm (texlive-latex-tools)[arguments]: Add phase that makes
array.sty available with a different name.
master
Marius Bakke 2021-05-24 21:50:03 +02:00
parent 80c3374f05
commit bf84be15a8
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 13 additions and 1 deletions

View File

@ -3268,7 +3268,19 @@ files have changed. It is based on MD5 checksum, provided by pdfTeX.")
(build-system texlive-build-system)
(arguments
'(#:tex-directory "latex/tools"
#:build-targets '("tools.ins")))
#:build-targets '("tools.ins")
#:phases (modify-phases %standard-phases
(add-after 'install 'provide-array-2016-10-06.sty
(lambda* (#:key outputs #:allow-other-keys)
;; XXX: array.sty does:
;; "DeclareRelease{}{2016-10-06}{array-2016-10-06.sty}"
;; ...which causes some users (hypre) to look for that
;; file specifically. Provide it.
(with-directory-excursion (string-append
(assoc-ref outputs "out")
"/share/texmf-dist/tex"
"/latex/tools")
(symlink "array.sty" "array-2016-10-06.sty")))))))
(home-page "https://www.ctan.org/pkg/latex-tools")
(synopsis "LaTeX standard tools bundle")
(description