blob: 602755a6c8e12360f9e3fef7ad3471edbd3a7325 (
plain)
1
2
3
4
5
6
7
8
9
10
|
## Add the font to LaTeX' font map if necessary
## and update the path caches.
UPDMAP=/usr/share/texmf-var/web2c/updmap.cfg
if test ! -f $UPDMAP; then touch $UPDMAP; fi
if ! grep -q '^Alegreya.map$' < $UPDMAP; then
echo "Map Alegreya.map" >> $UPDMAP
fi
updmap-sys
texhash
|