blob: 1376ca5cec826bf0ec3a0e9fea4302cbe1caa84d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
configs=('61-culmus.conf')
update_fontcache() {
fc-cache -fs
mkfontscale /usr/share/fonts/Type1
mkfontdir /usr/share/fonts/Type1
mkfontscale /usr/share/fonts/TTF
mkfontdir /usr/share/fonts/TTF
}
post_install() {
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
ln -sf ../conf.avail/${config} .
done
popd > /dev/null
update_fontcache
}
post_upgrade() {
if [ "`vercmp 0.102-1 $2`" != "-1" ] || [ ! -L /etc/fonts/conf.d/61-culmus.conf ]; then
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
ln -sf ../conf.avail/${config} .
done
popd > /dev/null
fi
update_fontcache
}
post_remove() {
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
rm -f ${config}
done
popd > /dev/null
update_fontcache
}
|