From 3bea98500ffe20714cde7fc8d4a8ff82d27cb66c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:33 +0200 Subject: [PATCH] gnu: Add texlive-rectopma. * gnu/packages/tex.scm (texlive-rectopma): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9a33d64e38..f8670511ef 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93731,6 +93731,25 @@ (define-public texlive-recipecard elegant and fits in the box of recipes.") (license license:lppl))) +(define-public texlive-rectopma + (package + (name "texlive-rectopma") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/rectopma/" "tex/latex/rectopma/") + (base32 + "158rk112xb538zav89w6yp4s0nasp8z4s7gwq22q3nchm4q7j8br"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/rectopma") + (synopsis "Recycle top matter") + (description + "This package saves the arguments of @code{\\author} and +@code{\\title} for reference (after @code{\\maketitle}) in +a document.") + (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