blob: 49584997c018c9abb9b7ada1f9e40a9f62bed193 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
test -x /usr/bin/gtk-update-icon-cache && /usr/bin/gtk-update-icon-cache -q /usr/share/icons/hicolor
}
post_upgrade() {
test -x /usr/bin/gtk-update-icon-cache && /usr/bin/gtk-update-icon-cache -q /usr/share/icons/hicolor
}
post_remove() {
test -x /usr/bin/gtk-update-icon-cache && /usr/bin/gtk-update-icon-cache -q /usr/share/icons/hicolor
}
|