blob: d82962fbd4c0122848d0b77b0d6142df4530398f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
cat <<EOF
==> ULTRAKILL installed successfully!
To launch the game, run: ultrakill
Or find it in your application menu.
NOTE: This package requires the game data files which you must
provide yourself (from Steam, GOG, or your existing installation).
If you need to install game data, place the game directory into:
/usr/share/ultrakill/game/
EOF
}
post_upgrade() {
post_install
}
post_remove() {
echo "==> ULTRAKILL has been removed."
}
|