blob: 3e9bb5c49b2f7c16349c7c5e13ea12e002d17fa2 (
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
}
|