blob: ed62bc46a10339b6fd1b19611a9b540bca801b0a (
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
29
30
31
|
post_install() {
echo 'Put your Descent 1 data files either to /usr/share/d1x-rebirth/ or ~/.d1x-rebirth/'
cat << EOF
Following files are needed to run the game:
descent.hog
descent.pig
You don't own the full game, yet?
Just visit GOOD OLD GAMES via:
https://www.gog.com/game/descent
and download it for a very low price! DRM-FREE!
You can get AddOns for the game from https://www.dxx-rebirth.com/addons/
EOF
}
post_upgrade() {
post_install
}
pre_remove() {
/bin/true
}
op=$1
shift
$op "$@"
|