me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-make4ht.

* gnu/packages/tex.scm (texlive-make4ht): New variable.
Nicolas Goaziou 2023-07-16 17:23:27 +02:00
parent 91864110ad
commit 7b1743d407
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -2920,6 +2920,28 @@ in this texmf tree. The script may be used for archiving purposes or to speed
up later TeX runs.")
(license license:artistic2.0)))
(define-public texlive-make4ht
(package
(name "texlive-make4ht")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/support/make4ht/" "scripts/make4ht/")
(base32
"0ayqs8i1za14krrgqyncv8ahs70pg5pnfs2m0aqcavfnd79qx2cj")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments (list #:link-scripts #~(list "make4ht")))
(propagated-inputs (list texlive-tex4ht))
(home-page "https://ctan.org/pkg/make4ht")
(synopsis "Build system for TeX4ht")
(description
"@code{make4ht} is a simple build system for TeX4ht, a TeX to XML
converter. It provides a command line tool that drives the conversion
process. It also provides a library which can be used to create customized
conversion tools.")
(license license:lppl1.3+)))
(define-public texlive-optexcount
(package
(name "texlive-optexcount")