blob: 55ab404263a5b02903a0587612877441b4794464 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
echo "Starting with 0.63, the service is auto-started. "
echo "The file that enables this is located at "
echo "/etc/xdg/autostart/pinot-dbus-daemon.desktop"
echo "Delete this file if you don't want the auto-start."
}
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
}
|