gnu: texlive-lastpage: Remove SIMPLE-TEXLIVE-PACKAGE call.
* gnu/packages/tex.scm (texlive-lastpage!): Remove SIMPLE-TEXLIVE-PACKAGE call.
parent
a94bb92f07
commit
bcabbce9ff
|
@ -13695,28 +13695,25 @@ underscores), and hyphenation of text typeset in monospaced (e.g.,
|
||||||
(define-deprecated-package texlive-latex-hyphenat texlive-hyphenat)
|
(define-deprecated-package texlive-latex-hyphenat texlive-hyphenat)
|
||||||
|
|
||||||
(define-public texlive-lastpage
|
(define-public texlive-lastpage
|
||||||
(let ((template (simple-texlive-package
|
(package
|
||||||
"texlive-lastpage"
|
(name "texlive-lastpage")
|
||||||
(list "doc/latex/lastpage/"
|
(version (number->string %texlive-revision))
|
||||||
"source/latex/lastpage/"
|
(source (texlive-origin
|
||||||
"tex/latex/lastpage/")
|
name version
|
||||||
(base32
|
(list "doc/latex/lastpage/" "source/latex/lastpage/"
|
||||||
"1cmzl0jkid4w60bjlyxrc5bynbc3lwq5nr77rsip0q9hprxykxks"))))
|
"tex/latex/lastpage/")
|
||||||
(package
|
(base32
|
||||||
(inherit template)
|
"1cmzl0jkid4w60bjlyxrc5bynbc3lwq5nr77rsip0q9hprxykxks")))
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(arguments
|
(build-system texlive-build-system)
|
||||||
(substitute-keyword-arguments (package-arguments template)
|
(home-page "https://ctan.org/pkg/lastpage")
|
||||||
((#:tex-directory _ #t) "latex/lastpage")
|
(synopsis "Reference last page for Page N of M type footers")
|
||||||
((#:build-targets _ '()) '(list "lastpage.ins"))))
|
(description
|
||||||
(home-page "https://ctan.org/pkg/lastpage")
|
"This package enables referencing the number of pages in a LaTeX document
|
||||||
(synopsis "Reference last page for Page N of M type footers")
|
through the introduction of a new label which can be referenced like
|
||||||
(description
|
|
||||||
"This package enables referencing the number of pages in a LaTeX
|
|
||||||
document through the introduction of a new label which can be referenced like
|
|
||||||
@code{\\pageref{LastPage}} to give a reference to the last page of a document.
|
@code{\\pageref{LastPage}} to give a reference to the last page of a document.
|
||||||
It is particularly useful in the page footer that says: @samp{Page N of M}.")
|
It is particularly useful in the page footer that says: @samp{Page N of M}.")
|
||||||
(license license:lppl1.3+))))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-lastpage texlive-lastpage)
|
(define-deprecated-package texlive-latex-lastpage texlive-lastpage)
|
||||||
|
|
||||||
|
|
Reference in New Issue