updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / ut1999-bonuspack2 / install
blob79bcda5c23efb1492fa84e3122c04800dd98daa0
1 ## arg 1:  the new package version
2 pre_install() {
3     return
6 ## arg 1:  the new package version
7 post_install() {
8     cat << __EOF__
9 Add the following to the respective sections of your UnrealTournament.ini:
10     [Engine.GameEngine]
11     ServerPackages=De
12     [Editor.EditorEngine]
13     EditPackages=De
14 __EOF__
18 ## arg 1:  the new package version
19 ## arg 2:  the old package version
20 pre_upgrade() {
21     return
24 ## arg 1:  the new package version
25 ## arg 2:  the old package version
26 post_upgrade() {
27     return
30 ## arg 1:  the old package version
31 pre_remove() {
32     return
35 ## arg 1:  the old package version
36 post_remove() {
37     cat << __EOF__
38 Remove the following from the respective sections of your UnrealTournament.ini:
39     [Engine.GameEngine]
40     ServerPackages=De
41     [Editor.EditorEngine]
42     EditPackages=De
43 __EOF__
46 # vim: filetype=sh