diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-23 09:34:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:30 +0200 |
commit | 696e5bc49bc2ac6ea1e4cff7af69191d2074ab14 (patch) | |
tree | 6ca1a4b4641bef981ab786aa8d42b7e9a2cd6f54 | |
parent | 5314a17d62220ed77f0542b4b9695b05a511f431 (diff) |
gnu: Add texlive-accsupp.
* gnu/packages/tex.scm (texlive-accsupp): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 370991b8de..6244e6a186 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1519,6 +1519,27 @@ works on TeX virtual fonts and @command{vpl2ovp} transforms a TeX font to an Omega one.") (license license:gpl3+))) +(define-public texlive-accsupp + (package + (name "texlive-accsupp") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/accsupp/" "source/latex/accsupp/" + "tex/latex/accsupp/") + (base32 + "10xdg3gk5madpb131lhc9x2sxzby4rvqycbfzb5kl2zkwr1qw5v7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/accsupp") + (synopsis "Better accessibility support for PDF files") + (description + "Since PDF 1.5 portions of a page can be marked for better accessibility +support. For example, replacement texts or expansions of abbreviations can be +provided. This package starts with providing a minimal low-level interface +for programmers; its status is experimental.") + (license license:lppl1.3c))) + (define-public texlive-abbr (package (name "texlive-abbr") |