mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 17:54:37 +08:00
16 lines
399 B
Plaintext
16 lines
399 B
Plaintext
|
#!/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
|
||
|
|
||
|
# Run mktexlsr since /etc/texmf/web2c/updmap.cfg can be a new file
|
||
|
/usr/bin/mktexlsr
|
||
|
/usr/bin/updmap-sys --quiet --nohash
|
||
|
|