From 2ac3526bdf2dc43e9b35b404878350f82c823063 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 19 Jun 2023 15:49:11 +0200 Subject: [PATCH] gnu: Add texlive-fontbook. * gnu/packages/tex.scm (texlive-fontbook): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 525855fcd9..21805a5dfe 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5634,6 +5634,26 @@ accessed. Other features of the package include activating and deactivating hanging punctuation, and support for special Unicode characters.") (license license:cc-by-sa4.0))) +(define-public texlive-fontbook + (package + (name "texlive-fontbook") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/fontbook/" + "source/xelatex/fontbook/" + "tex/xelatex/fontbook/") + (base32 + "1n5yn6rgndk0yr91bhglby9nr5mifgfi895klvsixmxc0k5bqp97"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fontbook") + (synopsis "Generate a font book") + (description + "The package provides a means of producing a book of font samples (for +evaluation, etc.).") + (license license:lppl1.3+))) + (define-public texlive-garrigues (package (name "texlive-garrigues")