blob: f187656493110ba8ab1c9dceab867f5a063c61ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
## arg 1: the new package version
post_install() {
post_upgrade
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
echo 'You should copy the /usr/share/bsnes/profile/ data into your'
echo '~/.config/bsnes/ folder unless you have already done so. It contains'
echo 'files that the emulator needs to function properly.'
}
|