summaryrefslogtreecommitdiff
path: root/community-testing/xbmc/xbmc.install
blob: 862508e737b0b0fb354d4d1b87c8a18c78cf4794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
  true
}

post_upgrade() {
  post_install $1
  true
}

post_remove() {
  post_install $1
  true
}