diff options
author | Andrew Rowland <darowland@ieee.org> | 2012-08-09 14:29:20 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-08-09 14:29:20 -0500 |
commit | 93f6d52ee4db39eba9f207b1aad036f8bf13bdba (patch) | |
tree | 5c0a041efba51ad0cb5aa5f437207febf65fd6e2 /system/seahorse/doinst.sh | |
parent | 515bdc2a88260b4fdbe7beb804fb2c93faf76bb2 (diff) | |
download | slackbuilds-93f6d52ee4db39eba9f207b1aad036f8bf13bdba.tar.gz |
system/seahorse: Added (encryption made easy)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/seahorse/doinst.sh')
-rw-r--r-- | system/seahorse/doinst.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/system/seahorse/doinst.sh b/system/seahorse/doinst.sh new file mode 100644 index 0000000000..caa93c72af --- /dev/null +++ b/system/seahorse/doinst.sh @@ -0,0 +1,20 @@ +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.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 + |