blob: aeef788907813c19b645778b1beb03f6038914fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_upgrade() {
gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
update-desktop-database -q
echo 'If you wish to use jack (or jack2), use this command the first time'
echo 'you start milkytracker: SDL_AUDIODRIVER=jack milkytracker'
echo 'Then select the jack driver in milkytracker and connect the audio'
echo 'with a program like qjackctl.'
}
post_install() {
post_upgrade
}
post_remove() {
post_upgrade
}
# vim:set ts=2 sw=2 et:
|