From 043f86e0a13ddba68431e182a4c1880ddbbc1f7d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 21 Aug 2023 12:47:18 +0200 Subject: [PATCH] gnu: Add texlive-ocr-b. * gnu/packages/tex.scm (texlive-ocr-b): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9a71c98e36..4788d50c34 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20102,6 +20102,28 @@ traditional system (with prime symbols). The system can also be changed mid-document.") (license license:lppl1.3+))) +(define-public texlive-ocr-b + (package + (name "texlive-ocr-b") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/ocr-b/" + "fonts/source/public/ocr-b/" + "fonts/tfm/public/ocr-b/") + (base32 + "089y4hihxdln1rvn87lmmiamcy8xc0niiv4gqxivahwkdjl8w0zw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/ocr-b") + (synopsis "Fonts for OCR-B") + (description + "This package includes Metafont source for OCR-B at several sizes.") + ;; "you may freely use, modify, and/or distribute any of these files or + ;; the resulting fonts, without limitation." + (license (license:fsf-free "file://doc/fonts/ocr-b-outline/README")))) + (define-public texlive-omega (package (name "texlive-omega")