blob: a91501c21c21dd5810a96f68e32df349ed22ae4b (
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
|
post_install() {
cat << EOF
This software is still experimental! Some features are missing (e.g. Online)
but performance is already great. If you rely on a specific feature you can
still run the Windows version through Wine (AUR: cemu-wine) although doing
that is no longer recommended.
This package follows the XDG Base Directory Specification:
- Config files (e.g. settings.txt) are found in "$XDG_CONFIG_HOME/cemu".
Default: ~/.config/cemu
- Data files (e.g. mlc01, keys.txt, log.txt) are found in "$XDG_DATA_HOME/cemu".
Default: ~/.local/share/cemu
- Cache files (e.g. shaderCache) are found in "$XDG_CACHE_HOME/cemu".
Default: ~/.cache/cemu
Report Linux issues here: https://github.com/cemu-project/Cemu/issues
Report Arch issues here: https://aur.archlinux.org/packages/cemu
EOF
}
post_upgrade() {
if [ $(vercmp $2 2.0.182-1) -lt 0 ]; then cat << EOF
The location of the keys file recently changed from
$XDG_CONFIG_HOME (defaults to ~/.config/cemu/keys.txt) to
$XDG_DATA_HOME (defaults to ~/.local/share/cemu/keys.txt).
EOF
fi
}
|