diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2011-08-17 18:13:46 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2011-08-17 18:13:46 +0200 |
commit | f51af576a2b194f881f8f36f7973be928c136eab (patch) | |
tree | d8978f2205449f27fb9d6e06d3b50f3385d91fe9 /libre/texlive-bin-libre/texlive.install | |
parent | 9fe3016e5e2a96898b283a0ba14d277dafc8b389 (diff) |
Add texlive-bin-libre, texlive-texmf-libre.
texlive-bin-libre is texlive-bin from Arch modified to have Parabola
branding (otherwise different texmf would be confusing) with shared
libraries (probably making porting and security updates easier).
texlive-texmf-libre is whole texmf-dist of TeXLive 2011 with files
known to be nonfree or not useful removed.
Diffstat (limited to 'libre/texlive-bin-libre/texlive.install')
-rw-r--r-- | libre/texlive-bin-libre/texlive.install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libre/texlive-bin-libre/texlive.install b/libre/texlive-bin-libre/texlive.install new file mode 100644 index 000000000..9307c536b --- /dev/null +++ b/libre/texlive-bin-libre/texlive.install @@ -0,0 +1,18 @@ +post_install() { + echo ">>> texlive: updating the filename database..." + usr/bin/mktexlsr + echo -n "creating all formats..." + usr/bin/fmtutil-sys --all 1>/dev/null + echo " done." + echo " (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)" +} + +post_upgrade() { + echo ">>> texlive: updating the filename database..." + usr/bin/mktexlsr + echo -n "recreating all formats..." + usr/bin/fmtutil-sys --all 1>/dev/null + echo " done." + echo " (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)" +} + |