blob: 8b4e0fefe88e3f628b07fccc3ece272907797b4a (
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
|
post_install() {
cat <<- EOF
:: You need the Quake data (.pak) files to play.
:: pak0.pak to play the shareware episode and/or
:: additionally pak1.pak for the whole game.
:: Put them into <YOUR_HOME_DIR>/.quakespasm/id1/
:: If you have uncommented line in package(),
:: Here is how to install MPs and extensions.
:: There is desktop file for Mission Pack 1 (hipnotic)
:: Mission Pack 2 (rogue)
:: and for Abyss of Pandemonium (impel)
:: You need to copy paks for each extension in
:: <YOUR_HOME_DIR>/.quakespasm/hipnotic (for Mission pack 1)
:: <YOUR_HOME_DIR>/.quakespasm/rogue (for Mission pack 2)
:: <YOUR_HOME_DIR>/.quakespasm/impel (for Abyss of Pandemonium)
:: The last one can be grabbed for free from :
:: https://www.quaddicted.com/reviews/aopfm_v2.html
EOF
}
post_upgrade() {
post_install $1
}
|