guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: texlive-latex-l3packages: Fix missing files.


From: Pierre Neidhardt
Subject: 01/01: gnu: texlive-latex-l3packages: Fix missing files.
Date: Tue, 14 Aug 2018 04:52:48 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 3d4908a77b3c557418d95152edb2f1bff93bf09d
Author: Pierre Neidhardt <address@hidden>
Date:   Tue Aug 14 10:41:08 2018 +0200

    gnu: texlive-latex-l3packages: Fix missing files.
    
    * gnu/packages/tex.scm (texlive-latex-l3packages): Actually install the 
files.
---
 gnu/packages/tex.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e33a98a..4a0a4fa 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -1432,6 +1432,9 @@ that the LaTeX3 conventions can be used with regular 
LaTeX 2e packages.")
     (build-system texlive-build-system)
     (arguments
      '(#:tex-directory "latex/l3packages"
+       ;; build-targets must be specified manually since they are in
+       ;; sub-directories.
+       #:build-targets '("l3keys2e.ins" "xparse.ins" "xfrac.ins" "xfp.ins" 
"xtemplate.ins")
        #:phases
        (modify-phases %standard-phases
          ;; All package sources are in sub-directories, so we need to add them
@@ -1444,8 +1447,12 @@ that the LaTeX3 conventions can be used with regular 
LaTeX 2e packages.")
                                       cwd "/xparse:"
                                       cwd "/xfrac:"
                                       cwd "/xfp:"
-                                      cwd "/xtemplate")))
-             #t)))))
+                                      cwd "/xtemplate"
+                                      ;; The terminating ":" is required to 
include the
+                                      ;; l3kernel input as well.
+                                      ":")))
+             #t)))
+       ))
     (inputs
      `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
     (home-page "https://www.ctan.org/pkg/l3packages";)



reply via email to

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