From de0546e7ebd8b83d25660cf61accfcad928398e3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:33 +0200 Subject: [PATCH] gnu: Add texlive-mftinc. * gnu/packages/tex.scm (texlive-mftinc): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e6541f718f..5919d0126d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88805,6 +88805,27 @@ them not directly related to metre) that are often used in critical editions of classical texts.") (license license:lppl))) +(define-public texlive-mftinc + (package + (name "texlive-mftinc") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mftinc/" "source/latex/mftinc/" + "tex/latex/mftinc/") + (base32 + "0kixm45whs2160yg8kw0anyvhrklwr342zdqhxkdpvqb5qp957mr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mftinc") + (synopsis "Pretty-print Metafont source") + (description + "The @code{mft} program pretty-prints Metafont source code into a TeX file. +The @code{mftinc} package facilitates incorporating such files into a LaTeX2e +document. In addition, @code{mftinc} provides routines for improved comment +formatting and for typesetting font tables.") + (license license:lppl))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar