From 2a75e7f06e7e007c5ab796ae09e4ea1f609bb07f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 16 Aug 2023 18:57:26 +0200 Subject: [PATCH] gnu: Add texlive-kotex-utils. * gnu/packages/tex.scm (texlive-kotex-utils): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d593c0a635..a98d6717e0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7133,6 +7133,31 @@ UTF-8.") language; input Korean text should be encoded in UTF-8.") (license license:lppl1.3c))) +(define-public texlive-kotex-utils + (package + (name "texlive-kotex-utils") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/kotex-utils/" + "makeindex/kotex-utils/" + "scripts/kotex-utils/") + (base32 + "01qmr50fr3i2gzgjyj69jgj4czf62s22z58kja6hbqygczc1jba3"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments + (list #:link-scripts + #~(list "jamo-normalize.pl" "komkindex.pl" "ttf2kotexfont.pl"))) + (inputs (list perl)) + (propagated-inputs (list texlive-kotex-utf)) + (home-page "https://ctan.org/pkg/kotex-utils") + (synopsis "Utility scripts and support files for typesetting Korean") + (description + "The bundle provides scripts and support files for index generation in +Korean language typesetting.") + (license license:lppl))) + (define-public texlive-knuth-errata (package (name "texlive-knuth-errata")