mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 03:15:33 +00:00
This is a cherry-pick of PR#4223: - Add script to create debian source package - Update debian metadata based on Debian repos - Remove some lintian warnings and errors - Remove support Xenial - Reduce size of icon - Omit confusing values from gbp.conf
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
|