blob: 1363f01f17ba06944ef31f17acb1d6a2a3351c55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo "update mime database..."
update-mime-database /usr/share/mime/ > /dev/null
echo "update desktop database..."
update-desktop-database -q
echo "update icon cache..."
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
echo ""
echo "Don't forget to install the package timidity-freepats or fluidr3 and configure /etc/timidity++/timidity.cfg in order to have music in game"
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
|