blob: 10b115a8dabcdd51504d6a45040eff3179b28e59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "You need the 'Out Run (Rev B)' Rom set data files. Put them under"
echo "'~/.cannonball/roms'. The launcher script will also place a config"
echo "file there, if not already existing."
}
post_upgrade() {
post_install
}
post_remove() {
echo "You may remove leftover config and data files from '~/.cannonball'."
}
|