diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-16 17:18:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:39 +0200 |
commit | abc76749d335a0726a89febfc4ff1898b1737957 (patch) | |
tree | 7b0a7796ecd5bd10cef5df2744b9fb3f5a77274f /gnu/packages | |
parent | 8e560c3a81f053b1c59fdbaa0740d2b6be2fb221 (diff) | |
download | guix-abc76749d335a0726a89febfc4ff1898b1737957.tar.gz guix-abc76749d335a0726a89febfc4ff1898b1737957.zip |
gnu: Add texlive-mkjobtexmf.
* gnu/packages/tex.scm (texlive-mkjobtexmf): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d8b9996eb5..2a7cbb7acf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2892,6 +2892,34 @@ MFLua without any modification to produce exactly the same result.") ;; released under Public Domain terms. (license (list license:knuth license:public-domain)))) +(define-public texlive-mkjobtexmf + (package + (name "texlive-mkjobtexmf") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/mkjobtexmf/" + "doc/man/man1/mkjobtexmf.1" + "doc/man/man1/mkjobtexmf.man1.pdf" + "scripts/mkjobtexmf/" + "source/generic/mkjobtexmf/") + (base32 + "04wzq2260my5894kc8qhl954h6hri77vvg5kx8mf03kdlf3rvww6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "mkjobtexmf.pl"))) + (inputs (list perl)) + (home-page "https://ctan.org/pkg/mkjobtexmf") + (synopsis "Generate a texmf tree for a particular job") + (description + "The package provides a Perl script, which runs a program and tries to +find the names of file used. Two methods are available, option +@samp{-recorder} of (Web2C) TeX and the program strace. Then it generates +a directory with a texmf tree. It checks the found files and tries sort them +in this texmf tree. The script may be used for archiving purposes or to speed +up later TeX runs.") + (license license:artistic2.0))) + (define-public texlive-tex-ini-files (package (name "texlive-tex-ini-files") |