blob: 46edb8f41c13a9c04e7581abba1e4fbfef563ff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
gtk-update-icon-cache -q -f -t usr/share/icons/hicolor
[ -x `which update-desktop-database` ] && update-desktop-database -q
/bin/true
}
post_remove() {
gtk-update-icon-cache -q -f -t usr/share/icons/hicolor
[ -x `which update-desktop-database` ] && update-desktop-database -q
/bin/true
}
|