From 434dbecc8ed38edd6abfec6dd132fc70ee04207e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:03 +0200 Subject: [PATCH] gnu: Add texlive-prosper. * gnu/packages/tex.scm (texlive-prosper): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index fbba7f71d3..fd22f210ab 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93116,6 +93116,28 @@ (define-public texlive-properties @code{\\jobname.properties}.") (license license:lppl))) +(define-public texlive-prosper + (package + (name "texlive-prosper") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/prosper/" "tex/latex/prosper/") + (base32 + "1wbfgvh0lgfz7l9ihd6p25w88zpbgn2v1pjfsr19xyrf5h1dkg0s"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/prosper") + (synopsis "LaTeX class for high quality slides") + (description + "Prosper is a LaTeX class for writing transparencies. It is written as an +extension of the @code{seminar} class. Prosper offers a friendly environment +for creating slides for both presentations with an overhead projector and +a video projector. Slides prepared for a presentation with a computer and +a video projector may integrate animation effects, incremental display, and so +on. Various visual styles are supported and others are being contributed.") + (license license:lppl1.2+))) + ;;; ;;; 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