From 8124cd2e6d209c0d43746b2ff45dc7a0dc6ad923 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:42 +0200 Subject: [PATCH] gnu: Add texlive-poster-mac. * gnu/packages/tex.scm (texlive-poster-mac): New variable. --- gnu/packages/tex.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 540767f365..63e2488798 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92652,6 +92652,30 @@ employed to address the front side of each postcard and a message is printed on the back side of all.") (license license:lppl))) +(define-public texlive-poster-mac + (package + (name "texlive-poster-mac") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/poster-mac/" + "tex/generic/poster-mac/") + (base32 + "1h63zijhan1rvghklsia9siyzg67f7mq2pfl5n068qdss5i91k77"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/poster-mac") + (synopsis "Make posters and banners with TeX") + (description + "The package offers macros for making posters and banners with TeX. It is +compatible with most TeX macro formats, including Plain TeX, LaTeX, AmSTeX, +and AmS-LaTeX. The package creates a poster as huge box, which is then +distributed over as many printer pages as necessary. The only special +requirement is that your printer not be bothered by text that lies off the +page. This is true of most printers, including laser printers and PostScript +printers.") + (license license:lppl))) + ;;; ;;; 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