blob: 3319a64d7d862fcc3e52e4ba06f59f31d33d374b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
texconfig-sys rehash
echo "The Optima type face is recommended for prerequisite charts. Authentic"
echo "Linotype Optima fonts (or the Bitstream Zapf Humanist 601 clones) may be"
echo "purchased commercially; support files are available here:"
echo " fonts/psfonts/w-a-schmidt/pop.zip"
echo " fonts/psfonts/w-a-schmidt/bop.zip"
echo "The URW Classico fonts available at"
echo " fonts/urw/classico"
echo "are acceptable "free" alternatives."
update-desktop-database -q
}
post_remove() {
texconfig-sys rehash
update-desktop-database -q
}
post_upgrade() {
texconfig-sys rehash
update-desktop-database -q
}
|