mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: texlive-capt-of: Refresh package definition.
* gnu/packages/tex.scm (texlive-capt-of): Remove SIMPLE-TEXLIVE-PACKAGE call.
This commit is contained in:
parent
c5b0265520
commit
e2d105a1f6
1 changed files with 16 additions and 21 deletions
|
@ -5970,28 +5970,23 @@ (define-public texlive-calrsfs
|
|||
(license license:public-domain)))
|
||||
|
||||
(define-public texlive-capt-of
|
||||
(let ((template
|
||||
(simple-texlive-package
|
||||
"texlive-capt-of"
|
||||
(list "doc/latex/capt-of/"
|
||||
"source/latex/capt-of/"
|
||||
"tex/latex/capt-of/")
|
||||
(base32 "0bf0cdd9ca3kkqxqqkq6jalh5ybs60l80l5gfkl2whk2v4bnzfvz"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(outputs '("out" "doc"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"latex/capt-of")
|
||||
((#:build-targets _ '())
|
||||
'(list "capt-of.ins"))))
|
||||
(home-page "https://www.ctan.org/pkg/capt-of")
|
||||
(synopsis "Captions on more than floats")
|
||||
(description
|
||||
"This package defines a command @code{\\captionof} for putting a caption
|
||||
(package
|
||||
(name "texlive-capt-of")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/capt-of/" "source/latex/capt-of/"
|
||||
"tex/latex/capt-of/")
|
||||
(base32
|
||||
"0bf0cdd9ca3kkqxqqkq6jalh5ybs60l80l5gfkl2whk2v4bnzfvz")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(home-page "https://www.ctan.org/pkg/capt-of")
|
||||
(synopsis "Captions on more than floats")
|
||||
(description
|
||||
"This package defines a command @code{\\captionof} for putting a caption
|
||||
to something that's not a float.")
|
||||
(license license:lppl))))
|
||||
(license license:lppl)))
|
||||
|
||||
(define-deprecated-package texlive-latex-capt-of texlive-capt-of)
|
||||
|
||||
|
|
Loading…
Reference in a new issue