desktop/xbmc/xbmc.install

17 lines
340 B
Plaintext
Raw Normal View History

2010-06-08 05:54:36 +08:00
post_install() {
[[ $(type -p gtk-update-icon-cache) ]] && /usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
[[ $(type -p update-desktop-database) ]] && /usr/bin/update-desktop-database -q usr/share/applications
2011-11-29 07:17:46 +08:00
/bin/true
}
post_upgrade() {
2011-11-29 07:17:46 +08:00
post_install $1
/bin/true
}
post_remove() {
2011-11-29 07:17:46 +08:00
post_install $1
/bin/true
2010-06-08 05:54:36 +08:00
}
2011-11-29 07:17:46 +08:00