diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-17 11:35:28 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:12:25 +0200 |
commit | b2b27f63c49f57adab42b0742c1c8b628be84176 (patch) | |
tree | 5f1f9874c6c134690eae5eebeeab6e0ffa72e98d /gnu/packages | |
parent | ccca8fbac616e3d1a02cc6909d3375fbdf0a0df6 (diff) | |
download | guix-b2b27f63c49f57adab42b0742c1c8b628be84176.tar guix-b2b27f63c49f57adab42b0742c1c8b628be84176.tar.gz |
gnu: Add texlive-mptopdf.
* gnu/packages/tex.scm (texlive-mptopdf): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 41b130b8dd..8257c87e66 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1046,6 +1046,38 @@ Metafont's GF output, and put coding information and other Xerox-world information in the TFM file.") (license license:public-domain))) +(define-public texlive-mptopdf + (package + (name "texlive-mptopdf") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + ;; The first location prevents from downloading all ConTeXt + ;; "doc/context/scripts/mkii" directory. + (list "doc/context/scripts/mkii/mptopdf.man" + "doc/man/man1/mptopdf.1" + "doc/man/man1/mptopdf.man1.pdf" + "scripts/context/perl/" + "scripts/context/stubs/mswin/" + "tex/context/base/mkii/" + "tex/generic/context/mptopdf/") + (base32 + "0gbc6si5i7pgh37lnh5fpgnjs9180vz0nxpj6qkz8z2yb84ikq7l"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-plain)) + (home-page "https://ctan.org/pkg/mptopdf") + (synopsis "mpost to PDF, native MetaPost graphics inclusion") + (description + "The @code{mptopdf} script does standalone conversion from mpost to PDF, +using the @file{supp-*} and @file{syst-*} files. They also allow native +MetaPost graphics inclusion in LaTeX (via pdftex.def) and ConTeXt. They can +be used independently of the rest of ConTeXt.") + ;; Use the same licensing as ConTeXt. + (license (list license:lppl1.3c+ + license:gpl2+ + license:cc-by-sa4.0)))) + (define-public texlive-fontinst (package (name "texlive-fontinst") |