mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 18:54:38 +08:00
16 lines
401 B
Bash
16 lines
401 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/chakra/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
|
|
|