blob: c25173d65353c47e7459cbee897f164e24763991 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
if [[ -x usr/bin/gtk-update-icon-cache ]]; then
gtk-update-icon-cache -q -f usr/share/icons/hicolor
fi
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|