guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: Add texlive-stringenc.


From: guix-commits
Subject: 02/04: gnu: Add texlive-stringenc.
Date: Sat, 13 Nov 2021 04:33:06 -0500 (EST)

rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit a93f7a2ee30a1bce3e5518b01938b6b6968137fd
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Nov 12 23:54:43 2021 +0000

    gnu: Add texlive-stringenc.
    
    * gnu/packages/tex.scm (texlive-stringenc): New variable.
---
 gnu/packages/tex.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2e2320b..d563019 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3589,6 +3589,45 @@ LaTeX code now supports multiple dots and spaces, and 
this package by default
 is a stub that just loads @code{graphicx}.")
       (license license:lppl1.3c+))))
 
+(define-public texlive-stringenc
+  (let ((template (simple-texlive-package
+                   "texlive-stringenc"
+                   (list "/doc/latex/stringenc/README.md"
+                         "/source/latex/stringenc/stringenc.dtx")
+                   (base32
+                    "19sfi5jxldxmy79pxmapmgmn3iknf8wjczasvlrrwv0gyycxdzhw"))))
+    (package
+      (inherit template)
+      (outputs '("doc" "out"))
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ #t)
+          "generic/stringenc")
+         ((#:build-targets _ #t)
+          '(list "stringenc.dtx"))
+         ((#:phases phases)
+          `(modify-phases ,phases
+             (add-after 'unpack 'chdir
+               (lambda _ (chdir "source/latex/stringenc/")))
+             (add-after 'copy-files 'clean-up
+               (lambda* (#:key inputs outputs #:allow-other-keys)
+                 (delete-file-recursively
+                  (string-append (assoc-ref outputs "out") 
"/share/texmf-dist/build"))
+                 (delete-file
+                  (string-append (assoc-ref outputs "out") 
"/share/texmf-dist/stringenc.dtx"))
+                 (install-file
+                  (string-append (assoc-ref inputs "source") 
"/source/latex/stringenc/stringenc.dtx")
+                  (string-append (assoc-ref outputs "out") 
"/share/texmf-dist/source/latex/stringenc/"))
+                 (install-file
+                  (string-append (assoc-ref inputs "source") 
"/doc/latex/stringenc/README.md")
+                  (string-append (assoc-ref outputs "doc") 
"/doc/latex/stringenc/"))))))))
+      (home-page "https://www.ctan.org/pkg/stringenc";)
+      (synopsis "Converting a string between different encodings")
+      (description
+       "This package provides @code{\\StringEncodingConvert} for converting a
+string between different encodings.  Both LaTeX and plain-TeX are supported.")
+      (license license:lppl1.3c+))))
+
 (define-public texlive-l3build
   (let ((template (simple-texlive-package
                    "texlive-l3build"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]