mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
cc303b203f
and greek text, without having to use \textlatin or any other command to switch between the greek/latintext modes. It includes greek postscript fonts created by Angelos Haritsis. PR: ports/78830 Submitted by: eelvex <mplekos@physics.upatras.gr>
12 lines
344 B
Bash
12 lines
344 B
Bash
#!/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;
|