Archived
1
0
Fork 0

gnu: texlive-totcount: Remove SIMPLE-TEXLIVE-PACKAGE call.

* gnu/packages/tex.scm (texlive-totcount!): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-18 14:35:47 +02:00
parent 5c5fd9e825
commit 0110ef1c4e
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -13835,31 +13835,26 @@ of occurrences of a substring.")
(license license:lppl1.0+))) (license license:lppl1.0+)))
(define-public texlive-totcount (define-public texlive-totcount
(let ((template (simple-texlive-package (package
"texlive-totcount" (name "texlive-totcount")
(list "doc/latex/totcount/" (version (number->string %texlive-revision))
"source/latex/totcount/" (source (texlive-origin
"tex/latex/totcount/") name version
(base32 (list "doc/latex/totcount/" "source/latex/totcount/"
"1rj9ncip5h2cbdljjqwxqsg14pb4mimzhz290q872n32w7rxkp28")))) "tex/latex/totcount/")
(package (base32
(inherit template) "1rj9ncip5h2cbdljjqwxqsg14pb4mimzhz290q872n32w7rxkp28")))
(outputs '("out" "doc")) (outputs '("out" "doc"))
(build-system texlive-build-system) (build-system texlive-build-system)
(arguments (arguments (list #:tex-format "latex"))
(substitute-keyword-arguments (package-arguments template) (propagated-inputs (list texlive-graphics))
((#:tex-directory _ #t) "latex/totcount") (home-page "https://ctan.org/pkg/totcount")
((#:tex-format _ #t) "latex") (synopsis "Find the last value of a counter")
((#:build-targets _ '()) '(list "totcount.ins")))) (description
(propagated-inputs "This package records the value that was last set, for any counter of
(list texlive-graphics))
(home-page "https://ctan.org/pkg/totcount")
(synopsis "Find the last value of a counter")
(description
"This package records the value that was last set, for any counter of
interest. Since most such counters are simply incremented when they are interest. Since most such counters are simply incremented when they are
changed, the recorded value will usually be the maximum value.") changed, the recorded value will usually be the maximum value.")
(license license:lppl1.3c+)))) (license license:lppl1.3c+)))
(define-deprecated-package texlive-latex-totcount texlive-totcount) (define-deprecated-package texlive-latex-totcount texlive-totcount)