blob: 1a1d9d768c9273098b4cfe17e009620c36aa2f66 (
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
|
_install_info() {
cat <<'EOF'
*** This is an unofficial version of 2 Ship 2 Harkinian.
*** and is not supported by the Harbour Masters team.
*** Your save directory is located at $HOME/.local/share/2ship
***
*** If the game crashes after you update this package, you can
*** try to remove "mm.o2r" from the save dir and regenerate it again
*** by launching 2s2h.
***
*** Any issues for this package regarding compile errors must be
*** discussed in the AUR comments, and other ones such as game bugs
*** must go to their official Discord server for assistance.
*** You can also mention me (@altoxorg) for some AUR problems too.
EOF
}
post_install() {
_install_info
}
post_upgrade() {
_install_info
}
|