From 817fcca13da452fb2a848b13da196b1e96efea72 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:50 +0200 Subject: [PATCH] gnu: Add texlive-rjlparshap. * gnu/packages/tex.scm (texlive-rjlparshap): 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 e1f0f72e0c..1314984033 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -94049,6 +94049,28 @@ (define-public texlive-rgltxdoc documentations.") (license license:lppl1.2+))) +(define-public texlive-rjlparshap + (package + (name "texlive-rjlparshap") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/rjlparshap/" + "source/latex/rjlparshap/" + "tex/latex/rjlparshap/") + (base32 + "1csigz0i8a1zlrzlv0wl5dc5rqbpjkfhadaib5y92qb54n4aqi36"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/rjlparshap") + (synopsis "Support for use of @code{\\parshape} in LaTeX") + (description + "The package provides macros and environments that relieve the programmer of +some of the difficulties of using @code{\\parshape} in LaTeX macros. It does +not actually calculate shapes in the way that the @code{shapepar} package +does.") + (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