PKGBUILDs/community/xbmc/xbmc.install

17 lines
478 B
Plaintext
Raw Normal View History

2012-06-08 23:57:07 +00:00
post_install() {
2012-10-14 16:52:01 +00:00
[[ $(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
2012-10-19 12:56:37 +00:00
groupadd xbmc
useradd -G xbmc -d /var/empty xbmc
2012-06-08 23:57:07 +00:00
}
post_upgrade() {
post_install $1
2012-10-19 12:56:37 +00:00
echo "You may want to add xbmc user and group to use xbmc standalone"
2012-06-08 23:57:07 +00:00
}
post_remove() {
post_install $1
2012-10-19 12:56:37 +00:00
echo "You may want to remove xbmc user and group"
2012-06-08 23:57:07 +00:00
}