blob: 9307c536b91c66d8d2be5770c116fb75c410b2f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)"
}
|