aboutsummarylogtreecommitdiffstats
path: root/pokemmo.install
blob: a62815d9f62db65835f57fdb996e551e5473b375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
msg_blue() {
    printf "${blue}==>${bold} $1${all_off}\n"
}

all_off="$(tput sgr0)"
bold="${all_off}$(tput bold)"
blue="${bold}$(tput setaf 4)"

post_install(){
   msg_blue "To play, you will need to place a PokeMon Fire Red ROM, and optionally"
   msg_blue "a Heart Gold or Soul Silver ROM, in ~/.pokemmo/roms"
   echo ""
   msg_blue "This software is not open-source. You must agree to the terms of service before"
   msg_blue "using this software. The terms of service and licensing information may be"
   msg_blue "here: http://pokemmo.eu/tos/"
}

post_upgrade() {
  post_install
}

post_remove() {
  msg_blue "You may remove leftover config and data files from '~/.pokemmo'."
}