me
/
guix
Archived
1
0
Fork 0

gnu: texlive-epstopdf: Add missing "repstopdf" symlink.

* gnu/packages/tex.scm (texlive-epstopdf)[arguments]<#:phases>: Add missing
"repstopdf" symlink.
Nicolas Goaziou 2023-06-28 23:56:27 +02:00
parent d61cd4aebe
commit 0bdaff9313
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 5 additions and 1 deletions

View File

@ -2958,7 +2958,11 @@ of nodes and the styles of edges, may be adjusted.")
(lambda* (#:key inputs #:allow-other-keys)
(let ((gs (search-input-file inputs "/bin/gs")))
(substitute* "scripts/epstopdf/epstopdf.pl"
(("\"gs\"") (string-append "\"" gs "\"")))))))))
(("\"gs\"") (string-append "\"" gs "\""))))))
(add-after 'link-scripts 'add-repstopdf
(lambda _
(with-directory-excursion (string-append #$output "/bin")
(symlink "epstopdf" "repstopdf")))))))
(home-page "https://ctan.org/pkg/epstopdf")
(synopsis "Convert EPS to PDF using Ghostscript")
(inputs (list ghostscript perl))