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:
Nicolas Goaziou 2024-06-22 00:20:01 +02:00 committed by Ludovic Courtès
parent 94fe1845dc
commit acb89dcad1
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")