diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-16 17:38:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:55 +0200 |
commit | d88e2fdd3811142b72478e9728399ea613edc156 (patch) | |
tree | 8bed5857aec4d924892d8f5875a05b6675a27b62 | |
parent | c79b6b6c5f6e4649a11a68143cc484af0c707359 (diff) | |
download | guix-d88e2fdd3811142b72478e9728399ea613edc156.tar.gz |
gnu: Add texlive-xpdfopen.
* gnu/packages/tex.scm (texlive-xpdfopen): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 57a7488beb..0bfb25c175 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8451,6 +8451,29 @@ a Cistercian numeral, and @code{\\cisterciannum@{<integer>@}}, formats the integer (given as a string) as a Cistercian numeral.") (license license:lppl1.3c))) +(define-public texlive-xpdfopen + (package + (name "texlive-xpdfopen") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/pdfclose.1" + "doc/man/man1/pdfclose.man1.pdf" + "doc/man/man1/pdfopen.1" + "doc/man/man1/pdfopen.man1.pdf") + (base32 + "130wvaypfrg9sav0pdcdy1g10fll8pqcsqsy70fxlzzr937glsh1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xpdfopen") + (synopsis "Commands to control PDF readers, under X11") + (description + "The command-line programs @command{pdfopen} and @command{pdfclose} allow +you to control the X Window System version of Adobe's Acrobat Reader from the +command line or from within a (shell) script. The programs work with +@command{xpdf} and @command{evince}.") + (license license:public-domain))) + (define-public texlive-xpicture (package (name "texlive-xpicture") |