Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.12 KB

File metadata and controls

50 lines (43 loc) · 1.12 KB
 
Apr 29, 2009
Apr 29, 2009
1
local TOTAL_INSTALL_SIZE = 678963902;
2
3
4
5
6
7
8
local _ = MojoSetup.translate
Setup.Package
{
vendor = "epicgames.com",
id = "ut3-dedicated",
description = "Unreal Tournament 3 Dedicated Server",
Apr 29, 2009
Apr 29, 2009
9
version = "2.1",
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
write_manifest = false, -- don't want to update...
support_uninstall = false, -- ...or uninstall. This is just a fancy unzip.
recommended_destinations =
{
MojoSetup.info.homedir,
"/opt/games",
"/opt",
"/usr/local/games",
"/usr/local"
},
Setup.Readme
{
description = _("README"),
Apr 29, 2009
Apr 29, 2009
25
source = _("README-ut3-patch5.txt")
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
},
Setup.Eula
{
description = _("End User License Agreement"),
source = _("UT3-linux-server-EULA.txt")
},
Setup.Option
{
value = true,
required = true,
disabled = false,
bytes = TOTAL_INSTALL_SIZE,
description = _("Dedicated Server"),
Setup.File
{
allowoverwrite = true, -- just replace files that we update.
-- ...and just copy the whole archive.
},
},
}
-- end of config.lua ...