blob: 22d2ad1fb3e7647dd6f40d3a701858ba6b60dbc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
post_install() {
if [[ -f usr/bin/mktexlsr ]]; then
echo ">>> texlive: updating the filename database..."
usr/bin/mktexlsr
fi
if [[ -f usr/bin/fmtutil-sys ]]; then
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)"
fi
}
post_upgrade() {
local corename corever _pacout
if [[ -f usr/bin/mktexlsr ]]; then
echo ">>> texlive: updating the filename database..."
usr/bin/mktexlsr
fi
_pacout=$(pacman -Q texlive-core 2>/dev/null)
read corename corever <<< ${_pacout}
# only recreate formats if texlive-core has right version
if [[ ${corever} == 2016* ]]; then
if [[ -f usr/bin/fmtutil-sys ]]; then
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)"
fi
fi
}
|