blob: 914e70555d43efb0a49fe100888e7221f9e340e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
echo "Creating symlinks"
ln -s /usr/share/mythes/th_el_GR_v2.idx /usr/share/myspell/dicts/th_el_GR_v2.idx
[ $? -ne 0 ] && return $?
ln -s /usr/share/mythes/th_el_GR_v2.dat /usr/share/myspell/dicts/th_el_GR_v2.dat
[ $? -ne 0 ] && return $?
return 0
}
post_remove() {
echo "Removing symlinks"
rm /usr/share/myspell/dicts/th_el_GR_v2.idx
[ $? -ne 0 ] && return $?
rm /usr/share/myspell/dicts/th_el_GR_v2.dat
[ $? -ne 0 ] && return $?
return 0
}
|