blob: 5995073fc5dad12ad77b11b75e197a7b65caed19 (
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
31
32
33
34
35
36
|
post_install() {
cat >&2 << 'EOF'
## ##
## Wine will be used to run this Windows game; ##
## therefore, not everything may work properly. ##
## ##
## Please see: ##
> https://wiki.archlinux.org/title/Wine#Sound
## ##
## to figure out which optional dependencies you ##
## need to enable sound. ##
## Also see: ##
> https://appdb.winehq.org/objectManager.php?sClass=application&iId=20583
## for details and known limitations. ##
## ##
EOF
}
post_remove() {
cat >&2 << 'EOF'
## ##
## To completely remove user game data, delete ##
## the following directory: ##
## ##
## ~/.local/share/inscryption ##
## ##
EOF
}
|