summaryrefslogtreecommitdiffstats
path: root/abs/extra/xbmc/xbmc.install
blob: 64904834caa626480e6a2b8abb86d429fcbbf9eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
  getent group xbmc > /dev/null || groupadd xbmc
  getent passwd xbmc > /dev/null || useradd -m -d /var/lib/xbmc -g xbmc xbmc
  usermod -a -G xbmc,audio,video,power,network,optical,storage,disk xbmc
  gen_lib_xml.py
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
  echo "You may want to remove xbmc user and group"
}