blob: 8db29369c4eceac57d1e45e148478e8160759559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
update-desktop-database
update-mime-database /usr/share/mime
gtk-update-icon-cache -qf /usr/share/icons/hicolor
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|