mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
texlive.trigger: Recreate all formats on changes in /usr/share/texmf-dist - Current approach blindly tries to recreate everything - For each missing font/formt/... this will fail. However, installed fonts and formats are created successfully. While being ugly, this approach seem to work fine Dependencies: - Added dependency to pkg texmf-dist to texlive, as texlive is unusable without - Added dependency to pkg texmf-dist-full to texlive-full, so a full texlive distribution and not only the texlive tools is installed. *BEWARE*: This requires the patch to texmf-dist to be accepted! texlive-dvi: - Enabled some tools (especially dvips) required for a dvi based workflow and moved the new tools to texlive-dvi. (Maybe some other dvi-related tools fit there better, too?) - A few publishers and conferences required this workflow, including some high level conferences. Thus, researchers depend on these tools
5 lines
43 B
Bash
5 lines
43 B
Bash
#!/bin/sh
|
|
texhash
|
|
fmtutil-sys --all
|
|
exit 0
|