blob: 2035fe0b05c943a22787205ae58b0f7f4f383221 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
cat << _EOF
==> In order to play your music with gmusicbrowser, you need to install:
- gstreamer, perl-glib-object-introspection + gstreamer plugins or
- mpg321/vorbis-tools/flac123/alsa-utils or
- mplayer
(look at optdepends for details)
_EOF
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
}
post_upgrade() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
}
|