78653f2e06
Collection of files providing support for Cyrillic PostScript Fonts in TeX documents. PR: 28535 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su>
13 lines
257 B
Bash
13 lines
257 B
Bash
#!/bin/sh
|
|
|
|
# either $PKG_PREFIX or $3 should be set
|
|
PREFIX=${PKG_PREFIX:-$3}
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
perl -i -pe 's/pscyr\.map\n//m' ${PREFIX}/share/texmf/dvips/config/updmap
|
|
(cd ${PREFIX}/share/texmf/dvips/config/; sh updmap)
|
|
mktexlsr
|
|
;;
|
|
esac
|