blob: f917ebdff74074725a5558477261f9761315de9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat << _EOF
==> In order to play your music with gmusicbrowser, you need to install
gstreamer and its perl bindings 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
}
post_upgrade() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|