summarylogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorM0Rf302015-06-17 16:36:11 +0200
committerM0Rf302015-06-17 16:36:11 +0200
commitc52af945b9013a0ccb2aece7ef9e2a3467967ae0 (patch)
treee94b08134f0c827299c62b4d41be2dc4ca0597df /install
downloadaur-c52af945b9013a0ccb2aece7ef9e2a3467967ae0.tar.gz
Initial import
Diffstat (limited to 'install')
-rw-r--r--install46
1 files changed, 46 insertions, 0 deletions
diff --git a/install b/install
new file mode 100644
index 000000000000..79bcda5c23ef
--- /dev/null
+++ b/install
@@ -0,0 +1,46 @@
+## arg 1: the new package version
+pre_install() {
+ return
+}
+
+## arg 1: the new package version
+post_install() {
+ cat << __EOF__
+Add the following to the respective sections of your UnrealTournament.ini:
+ [Engine.GameEngine]
+ ServerPackages=De
+ [Editor.EditorEngine]
+ EditPackages=De
+__EOF__
+
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+pre_upgrade() {
+ return
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ return
+}
+
+## arg 1: the old package version
+pre_remove() {
+ return
+}
+
+## arg 1: the old package version
+post_remove() {
+ cat << __EOF__
+Remove the following from the respective sections of your UnrealTournament.ini:
+ [Engine.GameEngine]
+ ServerPackages=De
+ [Editor.EditorEngine]
+ EditPackages=De
+__EOF__
+}
+
+# vim: filetype=sh