mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: texlive-platex: Create missing symlink.
* gnu/packages/tex.scm (texlive-platex)[arguments]<#:phases>: Create missing symlink. Change-Id: I7924933a858526b2ffa1177ba29f916da99e3335
This commit is contained in:
parent
e12e90fa74
commit
1ab84de0e5
1 changed files with 8 additions and 1 deletions
|
@ -44970,7 +44970,14 @@ (define-public texlive-platex
|
|||
(lambda _
|
||||
(substitute* "source/platex/base/plfmt.ins"
|
||||
(("\\\\keepsilent\n" all)
|
||||
(string-append all "\\askforoverwritefalse\n"))))))))
|
||||
(string-append all "\\askforoverwritefalse\n")))))
|
||||
(add-after 'install 'symlink-binaries
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((euptex (search-input-file inputs "bin/euptex"))
|
||||
(bin (string-append #$output "/bin")))
|
||||
(mkdir-p bin)
|
||||
(with-directory-excursion bin
|
||||
(symlink euptex "platex"))))))))
|
||||
(propagated-inputs
|
||||
(list texlive-atbegshi
|
||||
texlive-atveryend
|
||||
|
|
Loading…
Reference in a new issue