[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/15: gnu: texlive-metafont-base: Install missing files.
From: |
guix-commits |
Subject: |
07/15: gnu: texlive-metafont-base: Install missing files. |
Date: |
Mon, 26 Oct 2020 17:39:38 -0400 (EDT) |
rekado pushed a commit to branch wip-texlive
in repository guix.
commit 7d64b3191bc6d58197edd89bc663d3431f65856c
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Oct 26 20:49:18 2020 +0100
gnu: texlive-metafont-base: Install missing files.
* gnu/packages/tex.scm (texlive-metafont-base)[arguments]: Also install
"misc"
and "config" directories.
---
gnu/packages/tex.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 69e6b96..438607a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -588,11 +588,13 @@ to adapt the plain e-TeX source file to work with XeTeX
and LuaTeX.")
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(base (string-append out "/share/texmf-dist/web2c"))
- (mf (string-append out
"/share/texmf-dist/metafont/base")))
+ (mf (string-append out "/share/texmf-dist/metafont/")))
(mkdir-p base)
(mkdir-p mf)
(install-file "build/mf.base" base)
- (copy-recursively "base" mf)
+ (for-each (lambda (where)
+ (copy-recursively where (string-append mf where)))
+ (list "base" "misc" "config"))
#t))))))
(native-inputs
`(("texlive-bin" ,texlive-bin)))
- 04/15: gnu: Replace texlive-latex-psnfss with texlive-psnfss., (continued)
- 04/15: gnu: Replace texlive-latex-psnfss with texlive-psnfss., guix-commits, 2020/10/26
- 08/15: gnu: Replace texlive-metafont-base with texlive-metafont., guix-commits, 2020/10/26
- 06/15: gnu: texlive-base: Add texlive-cm-super to default set., guix-commits, 2020/10/26
- 09/15: gnu: discrover: Remove obsolete build phase., guix-commits, 2020/10/26
- 11/15: gnu: mit-scheme: Remove obsolete build phase., guix-commits, 2020/10/26
- 10/15: gnu: discrover: Use new texlive package names., guix-commits, 2020/10/26
- 13/15: gnu: gtk-doc: Remove obsolete build phase., guix-commits, 2020/10/26
- 14/15: gnu: sbcl: Remove obsolete build phase., guix-commits, 2020/10/26
- 12/15: gnu: hypre: Remove obsolete build phase., guix-commits, 2020/10/26
- 15/15: gnu: Replace texlive-latex-lh with texlive-lh., guix-commits, 2020/10/26
- 07/15: gnu: texlive-metafont-base: Install missing files.,
guix-commits <=