Archived
1
0
Fork 0

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

* gnu/packages/tex.scm (texlive-amscls): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-AMSFONTS, TEXLIVE-AMSMATH, TEXLIVE-URL.
[description]: Fix typos.
This commit is contained in:
Nicolas Goaziou 2023-05-18 13:41:14 +02:00
parent a161e8057b
commit 903f6db73b
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -4820,28 +4820,29 @@ commands. The commands may also be used in plain TeX.")
(license license:lppl))) (license license:lppl)))
(define-public texlive-amscls (define-public texlive-amscls
(let ((template (simple-texlive-package (package
"texlive-amscls" (name "texlive-amscls")
(list "/doc/latex/amscls/" (version (number->string %texlive-revision))
"/source/latex/amscls/" (source (texlive-origin
"/bibtex/bst/amscls/") name version
(base32 (list "bibtex/bst/amscls/" "doc/latex/amscls/"
"0vw0b815slvfqfd8qffyfzb3xfvyv6k77m12xp0l67hs8p08s5b7")))) "source/latex/amscls/" "tex/latex/amscls/")
(package (base32
(inherit template) "1chy1rqwici66p9brphb3gsprmcyhia9cvm5fn9wb5a9cchxqa08")))
(arguments (outputs '("out" "doc"))
(substitute-keyword-arguments (package-arguments template) (build-system texlive-build-system)
((#:tex-directory _ #t) (propagated-inputs
"latex/amscls"))) (list texlive-amsfonts
(home-page "https://www.ctan.org/pkg/amscls") texlive-amsmath
(synopsis "AMS document classes for LaTeX") texlive-url))
(description (home-page "https://www.ctan.org/pkg/amscls")
"This bundle contains three AMS classes: @code{amsartamsart} (for writing (synopsis "AMS document classes for LaTeX")
articles for the AMS), @code{amsbookamsbook} (for books) and (description
@code{amsprocamsproc} (for proceedings), together with some supporting "This bundle contains three AMS classes: @code{amsart} (for writing
material. The material is made available as part of the AMS-LaTeX articles for the AMS), @code{amsbook} (for books) and @code{amsproc} (for
distribution.") proceedings), together with some supporting material. The material is made
(license license:lppl1.3c+)))) available as part of the AMS-LaTeX distribution.")
(license license:lppl1.3c+)))
(define-deprecated-package texlive-latex-amscls texlive-amscls) (define-deprecated-package texlive-latex-amscls texlive-amscls)