From ded9789bbcfc54ee225e96e494be644b5d144869 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 18 Jun 2023 18:07:57 +0200 Subject: [PATCH] gnu: Add texlive-context-animation. * gnu/packages/tex.scm (texlive-context-animation): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c5dbe40fcf..0f12e6b257 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10013,6 +10013,27 @@ for a wealth of support information.") "This module provides support for typesetting algorithms.") (license license:gpl3+))) +(define-public texlive-context-animation + (package + (name "texlive-context-animation") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/context/third/animation/" + "tex/context/interface/third/" + "tex/context/third/animation/") + (base32 + "156zpxjb4c7qaibn7wjw13ysqyqg3m7pb8x3r3fzs6m83gp6r46c"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-context)) + (home-page "https://ctan.org/pkg/context-animation") + (synopsis "Generate fieldstack based animation with ConTeXt") + (description + "The package is a port, to Context (mkvi), of the corresponding LaTeX +package.") + (license license:gpl3))) + (define-public texlive-beamer (package (name "texlive-beamer")