From 7c59c8224c060ea43d23382faeb0f79180426ede Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:51:10 +0200 Subject: [PATCH] gnu: Add texlive-gcard. * gnu/packages/tex.scm (texlive-gcard): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c5f131284d..e7d54452c7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -83316,6 +83316,27 @@ constant number per line; column operations on matrices (a.k.a.@: Gaussian operations).") (license license:lppl))) +(define-public texlive-gcard + (package + (name "texlive-gcard") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/gcard/" "tex/latex/gcard/") + (base32 + "0ps2iiwzcgka7h75mvpw1g0c63qw6x440bl31dlgnzcwczhk64h3"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/gcard") + (synopsis "Arrange text on a sheet to fold into a greeting card") + (description + "The package provides a simple means of producing greeting cards. +It arranges four panels onto a single sheet so that when the sheet is folded +twice the four panels are arranged as front cover, inside left and right +pages, and back cover. The four panels are set in minipages for formatting by +the user.") + (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