gnu: texlive-metafont-base: Install missing files.
* gnu/packages/tex.scm (texlive-metafont-base)[arguments]: Also install "misc" and "config" directories.master
parent
17aeabdd52
commit
e760a15d35
|
@ -589,11 +589,13 @@ to adapt the plain e-TeX source file to work with XeTeX and LuaTeX.")
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(base (string-append out "/share/texmf-dist/web2c"))
|
(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 base)
|
||||||
(mkdir-p mf)
|
(mkdir-p mf)
|
||||||
(install-file "build/mf.base" base)
|
(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))))))
|
#t))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("texlive-bin" ,texlive-bin)))
|
`(("texlive-bin" ,texlive-bin)))
|
||||||
|
|
Reference in New Issue