diff options
author | piernov <piernov@piernov.org> | 2011-08-17 00:43:21 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2011-08-17 00:43:21 +0200 |
commit | 7ae53bfec4b52ac525b1b3186449fc8a4e454ab0 (patch) | |
tree | aa36ab9450d121eee19969428fd07cdf8dcd172d /gnome-user-share/post-install | |
parent | f3c1e632b17b830f771f1c697382657442df11bf (diff) | |
download | gnome3-7ae53bfec4b52ac525b1b3186449fc8a4e454ab0.tar.gz gnome3-7ae53bfec4b52ac525b1b3186449fc8a4e454ab0.tar.bz2 gnome3-7ae53bfec4b52ac525b1b3186449fc8a4e454ab0.tar.xz gnome3-7ae53bfec4b52ac525b1b3186449fc8a4e454ab0.zip |
gnome-user-share 3.0.0-1 ajout port
Diffstat (limited to 'gnome-user-share/post-install')
-rwxr-xr-x | gnome-user-share/post-install | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnome-user-share/post-install b/gnome-user-share/post-install new file mode 100755 index 0000000..63be50b --- /dev/null +++ b/gnome-user-share/post-install @@ -0,0 +1,19 @@ +#!/bin/sh + +port=gnome-user-share + +# gconf schemas +/usr/sbin/gconfpkg --install $port + +# 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 |