mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 16:57:55 +01:00
gnu: texlive-ms: Refresh package definition.
* gnu/packages/tex.scm (texlive-ms): Remove SIMPLE-TEXLIVE-PACKAGE call.
This commit is contained in:
parent
ada78c49fe
commit
342800f747
1 changed files with 21 additions and 22 deletions
|
@ -9148,28 +9148,27 @@ (define-public texlive-ocgx2
|
|||
(define-deprecated-package texlive-latex-ocgx2 texlive-ocgx2)
|
||||
|
||||
(define-public texlive-ms
|
||||
(let ((template
|
||||
(simple-texlive-package
|
||||
"texlive-ms"
|
||||
(list "doc/latex/ms/" "source/latex/ms/" "tex/latex/ms/")
|
||||
(base32 "1cgrpx5mybiirjjdmni8kvqdg37dwfkixq3h9ami0mgxqqqfl2x3"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(outputs '("out" "doc"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"latex/ms")
|
||||
((#:tex-format _ "latex") "latex")
|
||||
((#:build-targets _ '())
|
||||
#~(list "count1to.ins" "multitoc.ins"))))
|
||||
(home-page "https://ctan.org/macros/latex/contrib/ms")
|
||||
(synopsis "Various LaTeX packages by Martin Schroder")
|
||||
(description
|
||||
"The remains of a bundle of LaTeX packages by Martin Schroder; the
|
||||
collection comprises: count1to, make use of TeX counters; and multitoc,
|
||||
typeset the table of contents in multiple columns.")
|
||||
(license license:lppl))))
|
||||
(package
|
||||
(name "texlive-ms")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/ms/" "source/latex/ms/"
|
||||
"tex/latex/ms/")
|
||||
(base32
|
||||
"1cgrpx5mybiirjjdmni8kvqdg37dwfkixq3h9ami0mgxqqqfl2x3")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:tex-format "latex"))
|
||||
(propagated-inputs
|
||||
(list texlive-everyshi texlive-tools))
|
||||
(home-page "https://ctan.org/pkg/ms")
|
||||
(synopsis "Various LaTeX packages by Martin Schroder")
|
||||
(description
|
||||
"This package is the remains of a bundle of LaTeX packages by Martin
|
||||
Schroder; the collection comprises: @code{count1to}, make use of TeX counters;
|
||||
and @code{multitoc}, typeset the table of contents in multiple columns.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-deprecated-package texlive-latex-ms texlive-ms)
|
||||
|
||||
|
|
Loading…
Reference in a new issue