From 5232ec41db652c1d99624ed342d69b5e8fe0bb34 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:43:59 +0200 Subject: [PATCH] gnu: Add texlive-assoccnt. * gnu/packages/tex.scm (texlive-assoccnt): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 84783f0c7f..5e2eaf68b4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73190,6 +73190,24 @@ files''.") assignments.") (license license:lppl))) +(define-public texlive-assoccnt + (package + (name "texlive-assoccnt") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/assoccnt/" "tex/latex/assoccnt/") + (base32 + "0a7mwmsqj3vyvgcwxyyhawiylj9qkyggmgzar0517b2wrmqy7iyk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/assoccnt") + (synopsis "Associate counters, making them step when a master steps") + (description + "The package provides the means of declaring a set of counters to be stepped, +each time some master counter is stepped.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar