blob: f38cd8f15f4d076d76392d9ab67ef0793a16a142 (
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
28
29
30
|
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/objectManager.php?sClass=version&iId=35835
## for details and known limitations. ##
## ##
EOF
}
post_remove() {
cat >&2 << 'EOF'
## ##
## To completely remove user game data, delete ##
## the following directories: ##
## ##
## ~/.config/gog-cuphead ##
## ~/.local/share/gog-cuphead ##
## ##
EOF
}
|