blob: cc141eceeae8f9807c8c12a5f2d9acaeb9ca4d4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
prefix=/usr/local
if [ "$2" = "POST-INSTALL" ]; then
${prefix}/bin/mktexlsr
echo "Installation done."
echo "Refresh the map files and default hyphenations by running:"
echo "updmap-sys and fmtutil-sys"
echo "--> ${prefix}/bin/updmap-sys; ${prefix}/bin/fmtutil-sys --byfmt latex; ${prefix}/bin/fmtutil-sys --byfmt pdflatex"
fi;
|