blob: 4552cde716dd29b57b1cf3a41d42291e3c3a0ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cat <<- EOF
:: You need the data files from either
:: the CD-, floppy or demo-version to play.
:: Copy the files to the respective directory:
::
:: CD --> /usr/share/lotr/cd
:: floppy --> /usr/share/lotr
:: demo --> /usr/share/lotr
::
:: Then type 'lotr', 'lotr-cd', or 'lotr-demo'.
EOF
}
post_upgrade() {
post_install $1
}
|