From 41544268386f07151945e220db41d04403238ab6 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:47 +0200 Subject: [PATCH] gnu: Add texlive-ebezier. * gnu/packages/tex.scm (texlive-ebezier): 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 23158045c7..68fb8d1896 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -80018,6 +80018,27 @@ (define-public texlive-easyreview needs to be removed, needs to be replaced and add comments to the text.") (license license:lppl))) +(define-public texlive-ebezier + (package + (name "texlive-ebezier") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ebezier/" "source/latex/ebezier/" + "tex/latex/ebezier/") + (base32 + "0cmmlm6sx9xc3ail8dfcwx7afx6by0384ac5hhxp6mry52x0j9ki"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ebezier") + (synopsis "Device independent picture environment enhancement") + (description + "Ebezier is a device independent extension for the standard @code{picture} +environment. Linear, quadratic, and cubic bezier curves are supplied in +connection with higher level circle drawing commands. Additionally some +macros for the calculation of curve lenghts are part of this package.") + (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