mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
556 B
Text
19 lines
556 B
Text
|
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)"
|
||
|
}
|
||
|
|