diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-16 17:19:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:41 +0200 |
commit | 6398d47a95f61647f5e912c28f0b1ae712c02bb6 (patch) | |
tree | b76e23088bda971bce812345c3a693026556f57d | |
parent | ffd119b290c5a14d630621d960f8b926688dfa4d (diff) | |
download | guix-6398d47a95f61647f5e912c28f0b1ae712c02bb6.tar.gz |
gnu: Add texlive-pdfjam.
* gnu/packages/tex.scm (texlive-pdfjam): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4c13f1abcd..8b97c3a08e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3015,6 +3015,31 @@ occurs.") whitespace border, or trim them of a fixed border.") (license license:lppl1.3c))) +(define-public texlive-pdfjam + (package + (name "texlive-pdfjam") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/pdfjam.1" + "doc/man/man1/pdfjam.man1.pdf" + "doc/support/pdfjam/" "scripts/pdfjam/") + (base32 + "1wkxvbnri1lxyd4fbvsv0zzw6c8y3v33hzlv6y86jwil6r3p0338"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "pdfjam"))) + (home-page "https://ctan.org/pkg/pdfjam") + (synopsis "Shell scripts interfacing to @code{pdfpages}") + (description + "The package makes available the @command{pdfjam} shell script that +provides a simple interface to much of the functionality of the excellent +@code{pdfpages} package for LaTeX. The @command{pdfjam} script takes one or +more PDF files (and/or JPG/PNG graphics files) as input, and produces one or +more PDF files as output. It is useful for joining files together, selecting +pages, reducing several source pages onto one output page, etc.") + (license license:gpl2+))) + (define-public texlive-tex-ini-files (package (name "texlive-tex-ini-files") |