blob: 1b1fc5a736848d413376e31dfa367f0d7d947d89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
desktop_update() {
if [ -x usr/bin/update-mime-database ]; then
update-mime-database usr/share/mime > /dev/null 2>&1
fi
if [ -x usr/bin/xdg-icon-resource ]; then
xdg-icon-resource forceupdate --theme hicolor > /dev/null 2>&1
fi
if [ -x usr/bin/update-desktop-database ]; then
usr/bin/update-desktop-database -q
fi
}
# arg 1: the new package version
post_install() {
desktop_update
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install "$1"
}
# arg 1: the old package version
post_remove() {
desktop_update
}
# vim:set ts=2 sw=2 ft=sh et:
|