2014-03-10 12:30:27 -07:00
|
|
|
|
|
|
|
make_glib_find_gsettings_schemas() {
|
2014-04-05 03:53:28 -07: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 12:30:27 -07:00
|
|
|
}
|
|
|
|
envHooks+=(make_glib_find_gsettings_schemas)
|
|
|
|
|
2015-10-28 03:52:23 -07: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 12:30:27 -07:00
|
|
|
glibPreFixupPhase() {
|
2015-04-14 12:20:54 -07:00
|
|
|
# Move gschemas in case the install flag didn't help
|
2015-10-28 03:52:23 -07: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 12:20:54 -07:00
|
|
|
fi
|
|
|
|
|
2015-10-28 03:52:23 -07:00
|
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "${!outputLib}/share/gsettings-schemas/$name"
|
2014-03-10 12:30:27 -07:00
|
|
|
}
|
2014-08-26 16:14:09 -07:00
|
|
|
preFixupPhases+=(glibPreFixupPhase)
|
2014-08-30 10:11:52 -07:00
|
|
|
|