blob: 46a03fa5a5528f6975d3e0d64167dc7853db64d2 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
post_install() {
echo 'Put your Descent 2 data files either to /usr/share/d2x-rebirth-bin/ or ~/.d2x-rebirth/'
cat << EOF
Following files are needed to run the game:
descent2.ham
descent2.hog
descent2.s11
descent2.s22
alien1.pig
alien2.pig
fire.pig
groupa.pig
ice.pig
water.pig
And these movies files (but not mandatory):
intro-h.mvl and/or intro-l.mvl
other-h.mvl and/or other-l.mvl
robots-h.mvl and/or robots-l.mvl
These files - except the Movies (*.mvl) - are archived in the file descent2.sow
This file is an ARJ-archive and can be extracted with an archiver like unarj
You don't own the full game, yet?
Just visit GOOD OLD GAMES via:
https://www.gog.com/game/descent_2
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 "$@"
|