mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: texlive-pdfcrop. Add "rpdfcrop" symlink.
* gnu/packages/tex.scm (texlive-pdfcrop)[arguments]<#:phases>: Add missing "rpdfcrop" link. Change-Id: I498222565c8f63a678c4c6f2548f962e6365cedd
This commit is contained in:
parent
94fe1845dc
commit
acb89dcad1
1 changed files with 8 additions and 1 deletions
|
@ -48695,7 +48695,14 @@ (define-public texlive-pdfcrop
|
|||
"0wb67hsfasxvl1b484hyxvghhm9nkxwgs6m8ygzshr0m874hsl01"))))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:link-scripts #~(list "pdfcrop.pl")))
|
||||
(arguments
|
||||
(list #:link-scripts #~(list "pdfcrop.pl")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'link-scripts 'add-symlink
|
||||
(lambda _
|
||||
(with-directory-excursion (string-append #$output "/bin")
|
||||
(symlink "pdfcrop" "rpdfcrop")))))))
|
||||
(inputs (list perl))
|
||||
(home-page "https://ctan.org/pkg/pdfcrop")
|
||||
(synopsis "Crop PDF graphics")
|
||||
|
|
Loading…
Reference in a new issue