blob: 1d79186ff9d390dc4220abad6c5e335db70ef53d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
UPDMAP="etc/texmf/web2c/updmap.cfg"
UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg"
cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP
cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
if [[ -f "$UPDMAPLOCAL" ]]; then
cat "$UPDMAPLOCAL" >> $UPDMAP
fi
/usr/bin/updmap-sys --quiet --nohash
|