blob: 43ea46f2c1c7ec8a48cadb783c97fbd35de7dc9d (
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
|
post_install() {
cat << EOF
Installing the games
--------------------
1. Install the game(s) (eg using wine or Unshield)
2. Copy /etc/gemrb/GemRB.cfg.sample to ~/.gemrb/gemrb.cfg or to /etc/gemrb/gemrb.cfg
3. Edit gemrb.cfg, mainly to set up the path to the game's data files. It is crucial to get this right.
4. Now You can start the game by executing "gemrb" at the command line prompt
EOF
gtk-update-icon-cache -f /usr/share/icons/hicolor/
}
post_upgrade() {
post_install
}
post_remove() {
echo "Don't forget to remove game data files."
post_install
}
|