guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: texlive-babel-french: Add missing files.


From: guix-commits
Subject: branch master updated: gnu: texlive-babel-french: Add missing files.
Date: Fri, 28 Jan 2022 07:11:15 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new decd4c3679 gnu: texlive-babel-french: Add missing files.
decd4c3679 is described below

commit decd4c36798f0c89a5927c33b395e3a73f26ab52
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Fri Jan 28 13:10:04 2022 +0100

    gnu: texlive-babel-french: Add missing files.
    
    * gnu/packages/tex.scm (texlive-babel-french)[outputs]: Add "doc" output.
    [arguments]<#:phases>: Install documentation and source files.
---
 gnu/packages/tex.scm | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index a7a0a8b3ab..63aeefc6cd 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4059,16 +4059,27 @@ for Canadian and USA text.")
           (base32 "0cgn4dq5wnlfh9wddjzxsf7p56pk29lyndg56zg6558y7xf67cw8"))))
     (package
       (inherit template)
+      (outputs '("out" "doc"))
       (arguments
        (substitute-keyword-arguments (package-arguments template)
          ((#:tex-directory _ '())
           "generic/babel-french")
          ((#:build-targets _ '())
-          ''("frenchb.ins"))           ; TODO: use dtx and build documentation
+          ;; TODO: use dtx and build documentation.
+          '(list "frenchb.ins"))
          ((#:phases phases)
           `(modify-phases ,phases
              (add-after 'unpack 'chdir
-               (lambda _ (chdir "source/generic/babel-french")))))))
+               (lambda _ (chdir "source/generic/babel-french")))
+             (replace 'copy-files
+               (lambda* (#:key inputs outputs #:allow-other-keys)
+                 (let ((origin (assoc-ref inputs "source"))
+                       (source (string-append (assoc-ref outputs "out")
+                                              "/share/texmf-dist/source"))
+                       (doc (string-append (assoc-ref outputs "doc")
+                                           "/share/texmf-dist/doc")))
+                   (copy-recursively (string-append origin "/source") source)
+                   (copy-recursively (string-append origin "/doc") doc))))))))
       (home-page "https://ctan.org/macros/latex/contrib/babel-contrib/french";)
       (synopsis "Babel contributed support for French")
       (description



reply via email to

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