mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: texlive-latex-fontspec: Install default fontspec.cfg.
* gnu/packages/tex.scm (texlive-latex-fontspec)[arguments]: Add build phase to install fontspec.cfg.
This commit is contained in:
parent
ebe0271aa0
commit
9c45beb4cc
1 changed files with 29 additions and 1 deletions
|
@ -1554,7 +1554,35 @@ (define-public texlive-latex-fontspec
|
|||
"1p0mkn6iywl0k4m9cx3hnhylpi499inisff3f72pcf349baqsnvq"))))
|
||||
(build-system texlive-build-system)
|
||||
(arguments
|
||||
'(#:tex-directory "latex/fontspec"))
|
||||
'(#:tex-directory "latex/fontspec"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-default-fontspec.cfg
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(with-output-to-file
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/texmf-dist/tex/latex/fontspec/fontspec.cfg")
|
||||
(lambda _
|
||||
(display "\
|
||||
%%% FONTSPEC.CFG %%%
|
||||
%
|
||||
% This configuration file sets up TeX Ligatures by default for all fonts loaded
|
||||
% with `\\setmainfont` and `\\setsansfont`.
|
||||
%
|
||||
% In addition, `\\setmonofont` has default features to enforce \"monospace\"
|
||||
% settings with regard to space stretchability and shrinkability.
|
||||
|
||||
\\defaultfontfeatures
|
||||
[\\rmfamily,\\sffamily]
|
||||
{Ligatures=TeX}
|
||||
|
||||
\\defaultfontfeatures
|
||||
[\\ttfamily]
|
||||
{WordSpace={1,0,0},
|
||||
HyphenChar=None,
|
||||
PunctuationSpace=WordSpace}
|
||||
")))
|
||||
#t)))))
|
||||
(propagated-inputs
|
||||
`(("texlive-latex-l3packages" ,texlive-latex-l3packages)))
|
||||
(home-page "https://www.ctan.org/pkg/fontspec")
|
||||
|
|
Loading…
Reference in a new issue