blob: 8dd2b8b8516e54fa66b82ba3c05b1723a3d1abc6 (
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
25
26
27
|
post_install() {
cat >&2 << 'EOF'
## ##
## Wine will be used to run this Windows game; ##
## therefore, not everything may work properly. ##
## ##
## Please see https://appdb.winehq.org for details ##
## and known limitations. ##
## ##
EOF
}
post_remove() {
cat >&2 << 'EOF'
## ##
## To completely remove user game data, delete ##
## the following directories: ##
## ##
## ~/.config/gog-through-the-darkest-of-times ##
## ~/.local/share/gog-through-the-darkest-of-times ##
## ##
EOF
}
|