blob: f60628dabc7528f8a2b61b3fe22836a03796877e (
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
34
35
36
37
38
39
|
available()
{
command -v $1 >/dev/null 2>&1
}
integration() {
# Setup Menus
if available update-desktop-database
then
update-desktop-database -q /usr/share/applications
fi
# Setup MIME types
if available update-mime-database
then
update-mime-database /usr/share/mime >/dev/null
fi
# Setup Icons
touch -c /usr/share/icons/hicolor
if available gtk-update-icon-cache
then
gtk-update-icon-cache -tq /usr/share/icons/hicolor
fi
}
post_install() {
integration
}
post_upgrade() {
integration
}
post_remove() {
integration
}
|