mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add texlive-optexcount.
* gnu/packages/tex.scm (texlive-optexcount): New variable.
This commit is contained in:
parent
abc76749d3
commit
dc887a8c1f
1 changed files with 26 additions and 0 deletions
|
@ -2920,6 +2920,32 @@ (define-public texlive-mkjobtexmf
|
|||
up later TeX runs.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public texlive-optexcount
|
||||
(package
|
||||
(name "texlive-optexcount")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/support/optexcount/"
|
||||
"scripts/optexcount/"
|
||||
"source/support/optexcount/")
|
||||
(base32
|
||||
"0rjyhyirkx11v04c8b0kjjz8745kdnj190vzkyyzafwnzfcbd754")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:link-scripts #~(list "optexcount")))
|
||||
(inputs (list python))
|
||||
(home-page "https://ctan.org/pkg/optexcount")
|
||||
(synopsis "Python script for counting words in OpTeX documents")
|
||||
(description
|
||||
"OpTeXcount is a basic Python utility that analyzes OpTeX source code.
|
||||
It is inspired by already existing TeXcount for LaTeX. The functionality is
|
||||
really lightweight and basic. It counts words and other elements of OpTeX
|
||||
document and sorts them out into individual categories. Users can print the
|
||||
source code with highlighted words using several colors, so they see what is
|
||||
considered as word, header etc.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public texlive-tex-ini-files
|
||||
(package
|
||||
(name "texlive-tex-ini-files")
|
||||
|
|
Loading…
Reference in a new issue