17 lines
181 B
Text
17 lines
181 B
Text
|
_update() {
|
||
|
glib-compile-schemas '/usr/share/glib-2.0/schemas/'
|
||
|
update-desktop-database -q
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
_update
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
_update
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
_update
|
||
|
}
|