blob: 260c20d811dccdd77241256eb44c5370f4e4ba09 (
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 app; ##
## therefore, not everything may work properly. ##
## ##
## Please see: ##
> https://appdb.winehq.org/objectManager.php?sClass=application&iId=20755
## for details and known limitations. ##
## ##
EOF
}
post_remove() {
cat >&2 << 'EOF'
## ##
## To completely remove user data, delete ##
## the ~/.local/share/aio-creator-neo directory. ##
## ##
EOF
}
|