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