blob: ae01688e7b99a582c10e4a3fdfce0671a95cc31c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
case $2 in
POST-INSTALL)
cd %%FONTSDIR%%
touch fonts.dir
sed -e '/mona\.ttf/d' fonts.dir > fonts.dir.tmp
numfonts=$(echo $(cat fonts.dir.tmp %%DIRFILE%% | wc -l) - 2 | bc)
echo ${numfonts} > fonts.dir
sed -e 1d fonts.dir.tmp >> fonts.dir
sed -e 1d %%DIRFILE%% >> fonts.dir
rm -f fonts.dir.tmp fonts.alias.tmp
;;
DEINSTALL)
cd %%FONTSDIR%%
touch fonts.dir
sed -e '/mona\.ttf/d' fonts.dir > fonts.dir.tmp
numfonts=$(echo $(cat fonts.dir.tmp | wc -l) - 2 | bc)
echo ${numfonts} > fonts.dir
sed -e 1d fonts.dir.tmp >> fonts.dir
;;
esac
|