diff options
author | Andrew Rowland <darowland@ieee.org> | 2012-08-09 14:30:08 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-08-09 14:30:08 -0500 |
commit | 91844dd2b63bd55df28e85526f2f30c4a6863646 (patch) | |
tree | c37079b73a89fe9934947dc4f8436a6cdce00eb5 /misc/seahorse-plugins/doinst.sh | |
parent | 93f6d52ee4db39eba9f207b1aad036f8bf13bdba (diff) | |
download | slackbuilds-91844dd2b63bd55df28e85526f2f30c4a6863646.tar.gz |
misc/seahorse-plugins: Added (plugins for Seahorse)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'misc/seahorse-plugins/doinst.sh')
-rw-r--r-- | misc/seahorse-plugins/doinst.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/misc/seahorse-plugins/doinst.sh b/misc/seahorse-plugins/doinst.sh new file mode 100644 index 0000000000..b75f360808 --- /dev/null +++ b/misc/seahorse-plugins/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 seahorse-plugins.schemas + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/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 + |