2014-03-10 19:30:27 +00:00
|
|
|
|
|
|
|
make_glib_find_gsettings_schemas() {
|
2014-04-05 11:53:28 +01:00
|
|
|
# For packages that need gschemas of other packages (e.g. empathy)
|
|
|
|
if [ -d "$1"/share/gsettings-schemas/*/glib-2.0/schemas ]; then
|
|
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "$1/share/gsettings-schemas/"*
|
|
|
|
fi
|
2014-03-10 19:30:27 +00:00
|
|
|
}
|
|
|
|
envHooks+=(make_glib_find_gsettings_schemas)
|
|
|
|
|
2015-10-28 10:52:23 +00:00
|
|
|
# Install gschemas, if any, in a package-specific directory
|
|
|
|
glibPreInstallPhase() {
|
|
|
|
installFlagsArray+=("gsettingsschemadir=${!outputLib}/share/gsettings-schemas/$name/glib-2.0/schemas/")
|
|
|
|
}
|
|
|
|
preInstallPhases+=(glibPreInstallPhase)
|
|
|
|
|
2014-03-10 19:30:27 +00:00
|
|
|
glibPreFixupPhase() {
|
2015-04-14 20:20:54 +01:00
|
|
|
# Move gschemas in case the install flag didn't help
|
2015-10-28 10:52:23 +00:00
|
|
|
if [ -d "${!outputLib}/share/glib-2.0/schemas" ]; then
|
|
|
|
mkdir -p "${!outputLib}/share/gsettings-schemas/$name/glib-2.0"
|
|
|
|
mv "${!outputLib}/share/glib-2.0/schemas" "${!outputLib}/share/gsettings-schemas/$name/glib-2.0/"
|
2015-04-14 20:20:54 +01:00
|
|
|
fi
|
|
|
|
|
2015-10-28 10:52:23 +00:00
|
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "${!outputLib}/share/gsettings-schemas/$name"
|
2014-03-10 19:30:27 +00:00
|
|
|
}
|
2014-08-27 00:14:09 +01:00
|
|
|
preFixupPhases+=(glibPreFixupPhase)
|
2014-08-30 18:11:52 +01:00
|
|
|
|