diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-29 01:38:17 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-29 01:38:17 -0300 |
commit | c2d0259a9775af968bd7a58ff70f3666f1adfc6f (patch) | |
tree | 7aed48ba6f4f53ac5570b81bc4871960c9c0f59b /libre/xbmc-libre/xbmc.install | |
parent | 7a730e1daca10cdb90bd9f73da94bcfcd6c3953a (diff) | |
download | abslibre-c2d0259a9775af968bd7a58ff70f3666f1adfc6f.tar.gz abslibre-c2d0259a9775af968bd7a58ff70f3666f1adfc6f.tar.bz2 abslibre-c2d0259a9775af968bd7a58ff70f3666f1adfc6f.zip |
xbmc-libre: add new package to libre repo
Diffstat (limited to 'libre/xbmc-libre/xbmc.install')
-rw-r--r-- | libre/xbmc-libre/xbmc.install | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libre/xbmc-libre/xbmc.install b/libre/xbmc-libre/xbmc.install new file mode 100644 index 000000000..b104b33e8 --- /dev/null +++ b/libre/xbmc-libre/xbmc.install @@ -0,0 +1,16 @@ +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 +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 + echo "You may want to remove xbmc user and group" +} |