diff options
author | Juan M. Lasca <juanmlasca@gmail.com> | 2022-04-29 09:42:43 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-30 13:51:54 +0700 |
commit | 4ad297db9b83db88b966ea442d6afc419392bc66 (patch) | |
tree | 7d08d0ea3b0bd7cef999548f6361b265a6d83328 /development/gedit-plugins/doinst.sh | |
parent | e4a6ba98fe2152270cffba5d092f709a295a8160 (diff) |
development/gedit-plugins: Updated for version 42.0. New maintainer.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/gedit-plugins/doinst.sh')
-rw-r--r-- | development/gedit-plugins/doinst.sh | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/development/gedit-plugins/doinst.sh b/development/gedit-plugins/doinst.sh index 83629a91906d9..2ac84955ccf76 100644 --- a/development/gedit-plugins/doinst.sh +++ b/development/gedit-plugins/doinst.sh @@ -1,11 +1,7 @@ -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 gedit-show-tabbar-plugin.schemas -schema_install gedit-drawspaces.schemas +if [ -e usr/share/glib-2.0/schemas ]; then + if [ -x /usr/bin/glib-compile-schemas ]; then + /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 + fi +fi |