blob: 62aeabeb883676407c4c0280a2e46627a817ffaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
_install_info() {
cat <<'EOF'
*** This is an unofficial packaged version of SpaghettiKart,
*** and is not supported by the Harbour Masters team.
*** Your save file is located at ~/.local/share/spaghettify
***
*** 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, or reach me out
*** through Discord at @AltoXorg.
EOF
}
post_install() {
_install_info
}
post_upgrade() {
_install_info
}
|