blob: 9ad68f217d0373dc815b3ac869c0727552d60d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# from the texlive-bin package
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() {
post_install "$@"
}
|