From 6b6356dacfe9f9ec8515d7dfed1c468639fbd837 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 21 Aug 2023 12:16:14 +0200 Subject: [PATCH] gnu: Add texlive-fetamont. * gnu/packages/tex.scm (texlive-fetamont): New variable. --- gnu/packages/tex.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f4cdf708bc..608909ce72 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11851,6 +11851,40 @@ family, but it might also fit other contemporary typefaces.") It can make it easy to write theses both in Chinese and English.") (license license:lppl1.3c))) +(define-public texlive-fetamont + (package + (name "texlive-fetamont") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/fetamont/" + "fonts/afm/public/fetamont/" + "fonts/map/dvips/fetamont/" + "fonts/opentype/public/fetamont/" + "fonts/source/public/fetamont/" + "fonts/tfm/public/fetamont/" + "fonts/type1/public/fetamont/" + "metapost/fetamont/" + "source/fonts/fetamont/" + "tex/latex/fetamont/") + (base32 + "0bs911vyn54i61vv3rhr0xcp6myap2s8ww6p1fd30ld1ha6nsrf6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + ;; FIXME: Generating font metrics require unpackaged "mf2outline.py" + ;; script. + (arguments + (list #:phases + #~(modify-phases %standard-phases + (delete 'generate-font-metrics)))) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/fetamont") + (synopsis "Extended version of Knuth's Logo typeface") + (description + "The @code{fetamont} typeface was designed in Metafont and extends the +Logo fonts to complete the Type 1 encoding.") + (license license:lppl1.3+))) + (define-public texlive-figbas (package (name "texlive-figbas")