From 33ceb1e7bc2414a6f01d57f9a324a0e43f1cfeeb Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:43 +0200 Subject: [PATCH] gnu: Add texlive-fontsetup. * gnu/packages/tex.scm (texlive-fontsetup): 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 b0c9636a6a..018292ef7c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -82728,6 +82728,27 @@ parts: quire and folio numbers. The intended use for this package is to help creating old-style books.") (license license:lppl1.3c))) +(define-public texlive-fontsetup + (package + (name "texlive-fontsetup") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/fontsetup/" + "tex/latex/fontsetup/") + (base32 + "03zigbwldivrdp9h3cksgvhw88zniq4yi968jmxy6plsg1qy8qq6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fontsetup") + (synopsis + "Front-end to @code{fontspec}, for selected fonts with math support") + (description + "This package facilitates the use of @code{fontspec} for users who do not wish +to bother with details, with a special focus on quality fonts supporting +mathematics.") + (license license:gpl3))) + ;;; ;;; 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