blob: 02bb2d55de159d665ad9288433b4b2ebab102af6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
[[ -x /usr/bin/update-desktop-database ]] && /usr/bin/update-desktop-database -q
[[ -x /usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -q -f -t usr/share/icons/hicolor
[[ -x /usr/bin/update-mime-database ]] && update-mime-database usr/share/mime
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
# vim:set ts=2 sw=2 et:
|