diff options
author | piernov <piernov@piernov.org> | 2011-10-27 11:48:50 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2011-10-27 11:48:50 +0200 |
commit | fc9dc454d641252e65be4fb8f5a0b8102f774d1c (patch) | |
tree | 569355f0c7fa2c1d5b6908cca8bb0c94d5ceb17b /epiphany-extensions/post-install | |
parent | b26820eab013edb3a68bc51a2eec925a3c0e7926 (diff) | |
parent | b507be8fd06c55721cb98c0c181eb2fabc65097b (diff) | |
download | gnome3-fc9dc454d641252e65be4fb8f5a0b8102f774d1c.tar.gz gnome3-fc9dc454d641252e65be4fb8f5a0b8102f774d1c.tar.bz2 gnome3-fc9dc454d641252e65be4fb8f5a0b8102f774d1c.tar.xz gnome3-fc9dc454d641252e65be4fb8f5a0b8102f774d1c.zip |
Merge branch 'master' of ssh://kiao.no-ip.info:443/~/gnome3
Diffstat (limited to 'epiphany-extensions/post-install')
-rwxr-xr-x | epiphany-extensions/post-install | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/epiphany-extensions/post-install b/epiphany-extensions/post-install new file mode 100755 index 0000000..7909990 --- /dev/null +++ b/epiphany-extensions/post-install @@ -0,0 +1,17 @@ +#!/bin/sh + +port=epiphany-extensions + +# glib schemas +/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 + scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null +done + +# End of file + |