blob: 202fe9155d3f0959124c621f73f31a1a871b54e3 (
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
|
# 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 /$MYTHHOME/.miro
ln -s /myth/miro/Movies /myth/video/Miro
exit 1
else
if [ -d /myth/miro ]
then
ln -s /myth/miro /$MYTHHOME/.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 /$MYTHHOME/.miro
ln -s /myth/miro/Movies /$MYTHHOME/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 /$MYTHHOME/.miro /myth/video/Miro /myth/miro /myth/democracy
/usr/LH/bin/gen_is_xml.py
}
. /usr/MythVantage/bin/install_functions.sh
home_check
op=$1
shift
$op $*
|