me
/
guix
Archived
1
0
Fork 0

gnu: texlive-metafont-base: Install missing files.

* gnu/packages/tex.scm (texlive-metafont-base)[arguments]: Also install "misc"
and "config" directories.
master
Ricardo Wurmus 2020-10-26 20:49:18 +01:00
parent 17aeabdd52
commit e760a15d35
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 2 deletions

View File

@ -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)))