diff options
Diffstat (limited to 'mutter/post-install')
-rwxr-xr-x | mutter/post-install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mutter/post-install b/mutter/post-install new file mode 100755 index 0000000..e3033de --- /dev/null +++ b/mutter/post-install @@ -0,0 +1,20 @@ +#!/bin/sh + +port=mutter + +# gconf schemas +/usr/sbin/gconfpkg --install $port +/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas + +# scrolls +SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`" + +for SCROLL in $SCROLLS +do + /usr/bin/scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null +done + +# icon cache +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + +# End of file |