blob: 3b869dfec781259b2705b3b9ccd88165d3550f88 (
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 freepats-legacy or soundfont-fluid and configure /etc/timidity++/timidity.cfg in order to have music in game"
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
|