From 25ea5fb62c1fa4ed1728c469a267e762a54f36d1 Mon Sep 17 00:00:00 2001 From: Fredrik Rinnestam Date: Sat, 10 Nov 2012 21:19:26 +0100 Subject: [PATCH] gtk3: added post-install script to compile needed glib schemas --- gtk3/Pkgfile | 2 +- gtk3/README | 8 -------- gtk3/post-install | 4 ++++ 3 files changed, 5 insertions(+), 9 deletions(-) delete mode 100644 gtk3/README create mode 100755 gtk3/post-install diff --git a/gtk3/Pkgfile b/gtk3/Pkgfile index edf457381..b4bb18969 100644 --- a/gtk3/Pkgfile +++ b/gtk3/Pkgfile @@ -5,7 +5,7 @@ name=gtk3 version=3.4.4 -release=1 +release=2 source=(http://download.gnome.org/sources/gtk+/3.4/gtk+-$version.tar.xz) build () { diff --git a/gtk3/README b/gtk3/README deleted file mode 100644 index 553cad0f0..000000000 --- a/gtk3/README +++ /dev/null @@ -1,8 +0,0 @@ -POST-INSTALL - -If you come across crashes such as: - -(transmission-gtk:19791): GLib-GIO-ERROR **: No GSettings schemas are installed on the system - -This can be resolved by generating a glib-schema with the command : -$ glib-compile-schemas /usr/share/glib-2.0/schemas/ diff --git a/gtk3/post-install b/gtk3/post-install new file mode 100755 index 000000000..21e60126d --- /dev/null +++ b/gtk3/post-install @@ -0,0 +1,4 @@ +#!/bin/sh +# compile needed glib schemas +glib-compile-schemas /usr/share/glib-2.0/schemas +