blob: 6bd133a4c78eb28c6e1d8b6960cdcf2fedb23e2d (
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
|
post_install() {
echo "*************************************************************"
echo "* Tox is by no means complete. *"
echo "* You may encounter bugs ranging from simple visual defects *"
echo "* to segfaults on file shares. *"
echo "* We cannot guarantee what works today will work tomorrow; *"
echo "* Tox is an alpha program and code changes daily. *"
echo "* *"
echo "* More at https://wiki.tox.im/ *"
echo "*************************************************************"
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
post_upgrade() {
post_install $1
}
post_remove() {
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|