mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add texlive-powerdot.
* gnu/packages/tex.scm (texlive-powerdot): New variable.
This commit is contained in:
parent
cc1616d026
commit
0002e739fd
1 changed files with 47 additions and 0 deletions
|
@ -92703,6 +92703,53 @@ (define-public texlive-postnotes
|
|||
including back links.")
|
||||
(license license:lppl1.3c)))
|
||||
|
||||
(define-public texlive-powerdot
|
||||
(package
|
||||
(name "texlive-powerdot")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/powerdot/"
|
||||
"source/latex/powerdot/"
|
||||
"tex/latex/powerdot/")
|
||||
(base32
|
||||
"1b5fmrzaif2d7rwbwlpd9xdykpw1r5p5cpjqiw3gs1f3241p43f4")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(home-page "https://ctan.org/pkg/powerdot")
|
||||
(arguments
|
||||
(list
|
||||
#:tex-format "latex"
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
;; Building documentation, automatic when
|
||||
;; generating runfiles, fails. Skip building it.
|
||||
(add-after 'unpack 'skip-documentation
|
||||
(lambda _
|
||||
(substitute* "source/latex/powerdot/powerdot.dtx"
|
||||
(("\\\\DocInput\\{powerdot\\.dtx\\}") "")))))))
|
||||
(native-inputs
|
||||
(list (texlive-updmap.cfg
|
||||
(list texlive-enumitem
|
||||
texlive-fourier
|
||||
texlive-hypdoc
|
||||
texlive-listings
|
||||
texlive-pgf
|
||||
texlive-placeins
|
||||
texlive-pst-node
|
||||
texlive-pst-text
|
||||
texlive-pstricks
|
||||
texlive-xcolor
|
||||
texlive-xkeyval))))
|
||||
(synopsis "Presentation class")
|
||||
(description
|
||||
"Powerdot is a presentation class for LaTeX that allows for the quick and easy
|
||||
development of professional presentations. It comes with many tools that
|
||||
enhance presentations and aid the presenter. Examples are automatic overlays,
|
||||
personal notes and a handout mode. To view a presentation, DVI, PS or PDF
|
||||
output can be used. A powerful template system is available to easily develop
|
||||
new styles.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
;;;
|
||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||
;;; of a merge conflict, place them above by existing packages with similar
|
||||
|
|
Loading…
Reference in a new issue