mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
16 lines
478 B
Text
16 lines
478 B
Text
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
|
|
groupadd xbmc
|
|
useradd -G xbmc -d /var/empty xbmc
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
echo "You may want to add xbmc user and group to use xbmc standalone"
|
|
}
|
|
|
|
post_remove() {
|
|
post_install $1
|
|
echo "You may want to remove xbmc user and group"
|
|
}
|