gnu: texlive-fonts-amsfonts: Install type1 fonts.
* gnu/packages/tex.scm (texlive-fonts-amsfonts)[native-inputs]: Fetch type1 font files. [arguments]: Install them.
This commit is contained in:
parent
1574932deb
commit
24d0c4d0eb
|
@ -1009,21 +1009,34 @@ symbol fonts.")
|
||||||
(find-files "." "[0-9]+\\.mf$"))
|
(find-files "." "[0-9]+\\.mf$"))
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(tfm (string-append
|
(fonts (string-append out "/share/texmf-dist/fonts"))
|
||||||
out "/share/texmf-dist/fonts/tfm/public/amsfonts"))
|
(tfm (string-append fonts "/tfm/public/amsfonts"))
|
||||||
(mf (string-append
|
(mf (string-append fonts "/source/public/amsfonts"))
|
||||||
out "/share/texmf-dist/fonts/source/public/amsfonts")))
|
(type1 (string-append fonts "/type1/public/amsfonts")))
|
||||||
(for-each (cut install-file <> tfm)
|
(for-each (cut install-file <> tfm)
|
||||||
(find-files "build" "\\.*"))
|
(find-files "build" "\\.*"))
|
||||||
(for-each (cut install-file <> mf)
|
(for-each (cut install-file <> mf)
|
||||||
(find-files "." "\\.mf"))
|
(find-files "." "\\.mf"))
|
||||||
|
(copy-recursively (assoc-ref inputs "amsfonts-type1") type1)
|
||||||
#t))))))
|
#t))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("texlive-fonts-cm" ,texlive-fonts-cm)
|
`(("texlive-fonts-cm" ,texlive-fonts-cm)
|
||||||
("texlive-metafont-base" ,texlive-metafont-base)
|
("texlive-metafont-base" ,texlive-metafont-base)
|
||||||
("texlive-bin" ,texlive-bin)))
|
("texlive-bin" ,texlive-bin)
|
||||||
|
("amsfonts-type1"
|
||||||
|
,(origin
|
||||||
|
(method svn-fetch)
|
||||||
|
(uri (svn-reference
|
||||||
|
(url (string-append "svn://www.tug.org/texlive/tags/"
|
||||||
|
%texlive-tag "/Master/texmf-dist/"
|
||||||
|
"/fonts/type1/public/amsfonts"))
|
||||||
|
(revision %texlive-revision)))
|
||||||
|
(file-name (string-append name "-type1-" version "-checkout"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1zfz33vn6gm19njy74n8wmn7sljrimfhwns5z8qqhxqfh1g4qip2"))))))
|
||||||
(home-page "https://www.ctan.org/pkg/amsfonts")
|
(home-page "https://www.ctan.org/pkg/amsfonts")
|
||||||
(synopsis "TeX fonts from the American Mathematical Society")
|
(synopsis "TeX fonts from the American Mathematical Society")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue