blob: 043cd887f2bebbe54f0708bd3d6d9317e4269147 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# arg 1: the new package version
post_install() {
echo -n "extracting fonts... "
for font in tmp/ttf-ms-fonts/*.exe
do
cabextract --lowercase --directory=tmp/ttf-ms-fonts/ $font -F '*.ttf' >/dev/null 2>&1
done
cabextract --lowercase --directory=tmp/ttf-ms-fonts/ tmp/ttf-ms-fonts/wd97vwr32.exe -F '*.cab' >/dev/null 2>&1
cabextract --lowercase --directory=tmp/ttf-ms-fonts/ tmp/ttf-ms-fonts/viewer1.cab -F '*.ttf' >/dev/null 2>&1
mkdir -p usr/share/fonts/TTF
: >usr/share/fonts/TTF/msfonts.txt
for i in `/bin/ls tmp/ttf-ms-fonts/*.ttf`; do
echo `basename $i` >>usr/share/fonts/TTF/msfonts.txt
cp $i usr/share/fonts/TTF
done
echo "done."
echo -n "rebuilding font cache... "
fc-cache -f > /dev/null
mkfontscale /usr/share/fonts/TTF
mkfontdir /usr/share/fonts/TTF
echo "done."
rm -rf tmp/ttf-ms-fonts
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
# remove fonts from their old location
rm -rf usr/X11R6/lib/X11/fonts/ttf-ms-fonts
post_install $1
}
# arg 1: the old package version
pre_remove() {
#rm -f usr/X11R6/lib/X11/fonts/TTF/
[ -f usr/share/fonts/TTF/msfonts.txt ] || return
for i in `cat usr/share/fonts/TTF/msfonts.txt`; do
rm -f usr/share/fonts/TTF/$i
done
rm -f usr/share/fonts/TTF/msfonts.txt
}
# arg 1: the old package version
post_remove() {
echo -n "rebuilding font cache... "
fc-cache -f > /dev/null
mkfontscale /usr/share/fonts/TTF
mkfontdir /usr/share/fonts/TTF
echo "done."
}
op=$1
shift
$op $*
|