summaryrefslogtreecommitdiffstats
path: root/development/devhelp/doinst.sh
diff options
context:
space:
mode:
author Andrew Rowland2012-01-29 23:07:09 +0100
committer Robby Workman2012-02-12 04:19:29 +0100
commitc5950f1019e77064f9aa67f27a33b4ba3f739cf1 (patch)
tree91f76cddca36140f9ccf3e022dec9d2ffa1d8d8f /development/devhelp/doinst.sh
parent1aac783e12ce25ac22f0eeec274fc0e5e4129116 (diff)
downloadslackbuilds-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.sh19
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