diff options
author | Binh Nguyen <binhnguyen@fastmail.fm> | 2010-09-18 12:07:04 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-21 22:09:39 -0500 |
commit | b92f4d6ca7aee92fdb44d8db30ca57b74acfca2c (patch) | |
tree | 4ce3d899dfaa929b045d342ab3dbc090f9c91340 /system/file-roller/doinst.sh | |
parent | ba6a5d98819849a72551ac803bc5a3545bd1542e (diff) | |
download | slackbuilds-b92f4d6ca7aee92fdb44d8db30ca57b74acfca2c.tar.gz |
system/file-roller: Added (archive manager for GNOME)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/file-roller/doinst.sh')
-rw-r--r-- | system/file-roller/doinst.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/system/file-roller/doinst.sh b/system/file-roller/doinst.sh new file mode 100644 index 0000000000..9840b019c5 --- /dev/null +++ b/system/file-roller/doinst.sh @@ -0,0 +1,24 @@ +schema_install() { + SCHEMA="$1" + GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults" \ + chroot . gconftool-2 --makefile-install-rule \ + /etc/gconf/schemas/$SCHEMA \ + 1>/dev/null +} + +schema_install file-roller.schemas + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + |