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