mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
This change consolidates the Debian packages into a single source package, with the exception of the legacy KMFL packages. Fixes #5022.
16 lines
284 B
Bash
Executable file
16 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Update the dconf schema
|
|
dconf update
|
|
|
|
echo "postinst called to compile glib schemas"
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas/
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|