mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
13 lines
314 B
Bash
13 lines
314 B
Bash
#!/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
|
|
|