diff options
author | Andrew Rowland <darowland@ieee.org> | 2012-01-29 16:07:09 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-02-11 21:19:29 -0600 |
commit | c5950f1019e77064f9aa67f27a33b4ba3f739cf1 (patch) | |
tree | 91f76cddca36140f9ccf3e022dec9d2ffa1d8d8f /development/devhelp/doinst.sh | |
parent | 1aac783e12ce25ac22f0eeec274fc0e5e4129116 (diff) | |
download | slackbuilds-c5950f1019e77064f9aa67f27a33b4ba3f739cf1.tar.gz |
development/devhelp: Added (an API documentation browser for GTK+ and GNOME)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'development/devhelp/doinst.sh')
-rw-r--r-- | development/devhelp/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/development/devhelp/doinst.sh b/development/devhelp/doinst.sh new file mode 100644 index 0000000000..0606af7430 --- /dev/null +++ b/development/devhelp/doinst.sh @@ -0,0 +1,19 @@ +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 devhelp.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 |