3c6e384a1d
* initial cleanup with some debug messaging * further cleanup, mostly coding style * - more cleanup, and speed-up - more fixes, including many icon and encoding related issues - replace some icons and remove compile.py - prepare for python3 port as much as possible * remove some more unneeded files, few left-over cleanups * move some external scripts to python3 already * Fix and clean up add_search_suggestions and add_apt_filter_results logic * more cleanup, thx Codacity * fix issue with a path * add a killall to the test script, fix a method declaration * fix custom colour setting * keybinding: re-add GdkX11 * re-add mint-common dep * Use os.path.expanduser("~") instead of os.environ * revert re-add GdkX11, but import Gtk first
43 lines
1.0 KiB
Bash
43 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# postinst script
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
# summary of how this script can be called:
|
|
# * <postinst> `configure' <most-recently-configured-version>
|
|
# * <old-postinst> `abort-upgrade' <new version>
|
|
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
# <new-version>
|
|
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
# <failed-install-package> <version> `removing'
|
|
# <conflicting-package> <version>
|
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
# the debian-policy package
|
|
#
|
|
|
|
case "$1" in
|
|
configure)
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
|
python -m compileall -qf /usr/lib/linuxmint/mintMenu/
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|
|
|