blob: 4411be49e338f8f761e93b1179e3e9d9793a7798 (
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
|
# arg 1: the new package version
post_install() {
update-desktop-database -q
/usr/LH/bin/gen_is_xml.py
if [ -d /myth/democracy ]
then
ln -s /myth/democracy /home/mythtv/.miro
ln -s /myth/miro/Movies /myth/video/Miro
exit 1
else
if [ -d /myth/miro ]
then
ln -s /myth/miro /home/mythtv/.miro
ln -s /myth/miro/Movies /myth/video/Miro
exit 1
else
if [ ! -d /myth/miro -o /myth/democracy ]
then
mkdir -p /myth/miro/Movies
ln -s /myth/miro /home/mythtv/.miro
ln -s /myth/miro/Movies /home/mythtv/Movies
ln -s /myth/miro/Movies /myth/video/Miro
fi
fi
fi
chown -R mythtv.mythtv /myth/miro
}
post_upgrade() {
/usr/LH/bin/gen_is_xml.py
}
post_remove() {
update-desktop-database -q
rm -fr /home/mythtv/.miro /myth/video/Miro /myth/miro /myth/democracy
/usr/LH/bin/gen_is_xml.py
}
op=$1
shift
$op $*
|