updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / xbmc-dharma-pvr-git / xbmc-dharma-pvr-git.install
blob9d241670db00c4f78b60ed97b0294e00199ba6f2
1 post_install() {
2   echo ">> If XBMC won't start, but just segfaults, double check your X.Org config."
3   echo ">> The display depth has to be at least 24-bit, ie"
4   echo ">> set \"DefaultDepth 24\" under the \"Screen\" section of your xorg.conf file."
5   echo ">> If you have problems or suggestions for this PKGBUILD, have a look at its"
6   echo ">> dedicated forum thread: http://bbs.archlinux.org/viewtopic.php?pid=559107"
7   echo ">> or the wiki: http://xbmc.org/wiki/?title=XBMC_on_Arch_Linux_(Unofficial)."
8   echo ">> Note that this is a development version of XBMC." 
9   echo ">> If you encounter problems with XBMC don't forget to consult the official"
10   echo ">> xbmc forums found here: http://forum.xbmc.org "
11   echo ">> and report bugs to the xbmc bugtracker found here: http://trac.xbmc.org."
12   echo
14   [[ $(type -p gtk-update-icon-cache) ]] && /usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
15   [[ $(type -p update-desktop-database) ]] && /usr/bin/update-desktop-database -q usr/share/applications
18 post_upgrade() {
19   [[ $(type -p gtk-update-icon-cache) ]] && /usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
20   [[ $(type -p update-desktop-database) ]] && /usr/bin/update-desktop-database -q usr/share/applications
23 post_remove() {
24   [[ $(type -p gtk-update-icon-cache) ]] && /usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
25   [[ $(type -p update-desktop-database) ]] && /usr/bin/update-desktop-database -q usr/share/applications
28 # vim:set ts=2 sw=2 et: