blob: 956032354e0f181341653d78da63d9533253a511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
cat <<EOF
You need the Quake 1 data files to play.
Copy the "id1" directory to /usr/share/games/quake
EOF
}
post_upgrade() {
if [ "$(vercmp "$1" 20140513-1)" -eq 1 ]; then
cat <<EOF
The Quake data directory has changed to /usr/share/games/quake
You may need to move or link your current data from /usr/share/quake
EOF
fi
}
|