aboutsummarylogtreecommitdiffstats
path: root/overgrive.install
blob: ef84865edd1658523b1dca05085c9257b6ba35d3 (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
56
57
58
59
60
61
62
63
post_install() {
    # virtual environement to avoid pip changing system packages
    /usr/bin/python -m venv --system-site-packages /opt/thefanclub/overgrive/venv
    /opt/thefanclub/overgrive/venv/bin/pip install --upgrade google-api-python-client

    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    if [ -f /usr/bin/glib-compile-schemas ]
    then
        /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas/
    fi
}

post_upgrade() {
	post_install
}

pre_remove() {
    # stop application if running
	if ( pgrep overgrive > /dev/null )
    then
        pkill -9 ^overgrive
   fi

	# Set English as Shell output language
	LANG=en_US.UTF-8
	export LC_ALL=en_US.UTF-8
	userName=$(eval echo $SUDO_USER) 
	userHome=$(eval echo ~${SUDO_USER})

	if [ -f /tmp/overgrive.lock ]
	then
	   # check if indicator is running 
	   checkFlock=$(cat /tmp/overgrive.lock)

	   if [ ! "$checkFlock" = "" ] 
	   then
	     kill $checkFlock 2>/dev/null || true
	     rm /tmp/overgrive.lock
	   fi
	fi

	# if [ -f  "$userHome/.config/autostart/overgrive-autostart.desktop" ]
	# then 
	#    rm  "$userHome/.config/autostart/overgrive-autostart.desktop"
	# fi
	
    # if [ -f  "$userHome/.config/autostart/overgrive.desktop" ]
	# then 
	#    rm  "$userHome/.config/autostart/overgrive.desktop"
	# fi
    
}

post_remove() {
    rm -rf /opt/thefanclub/overgrive/
    if [ -z "$(ls -A /opt/thefanclub/)" ]
    then
        rmdir /opt/thefanclub/
    fi

	gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
	update-desktop-database -q
}