forked from AuroraMiddleware/gtk
29bcc38ae6
Add an extension point called gtk-im-module, which requires the type GtkIMContext. Simplify the loading by using GIO infrastructure. Drop the locale filtering for now, I don't think it is really necessary nowadays. Convert existing platform modules to gio modules. Sill to do: Drop the conditional build machinery. Either always include them, or never.
19 lines
441 B
Bash
Executable File
19 lines
441 B
Bash
Executable File
#!/bin/sh
|
|
|
|
gtk_api_version=$1
|
|
gtk_abi_version=$2
|
|
gtk_libdir=$3
|
|
gtk_datadir=$4
|
|
|
|
# Package managers set this so we don't need to run
|
|
if [ -z "$DESTDIR" ]; then
|
|
echo Compiling GSettings schemas...
|
|
glib-compile-schemas ${gtk_datadir}/glib-2.0/schemas
|
|
|
|
echo Updating desktop database...
|
|
update-desktop-database -q ${gtk_datadir}/applications
|
|
|
|
echo Updating icon cache...
|
|
gtk-update-icon-cache -q -t -f ${gtk_datadir}/icons/hicolor
|
|
fi
|