Skip to content

Latest commit

 

History

History
1242 lines (821 loc) · 46.7 KB

docs.txt

File metadata and controls

1242 lines (821 loc) · 46.7 KB
 
1
2
3
4
5
6
7
8
9
Using MojoSetup.
If there are gaps in this documentation, please ask on the MojoSetup mailing
list: to subscribe, send a blank email to mojosetup-subscribe@icculus.org,
and then questions can go to mojosetup@icculus.org. This document will
be updated as we see what parts are confusing, so feedback is appreciated.
May 16, 2007
May 16, 2007
10
Putting together a MojoSetup installer involves five general steps:
11
12
13
1) Compile the software.
2) Set up the installer filesystem structure.
3) Write a config file.
May 16, 2007
May 16, 2007
14
15
4) Add any localized strings.
5) Package up the final file for distribution.
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Each step has a lot of details, but all installers basically follow those same
basic development steps.
Compile the software:
You will need some tools. First, you'll need your platform's favorite build
tools. You'll also need CMake (http://www.cmake.org/), and a Subversion
(http://subversion.tigris.org/) client. These are all available for most
popular operating systems, and some not-so-popular ones.
Get the latest version of MojoSetup from Subversion:
May 16, 2007
May 16, 2007
30
svn co svn://svn.icculus.org/mojosetup/trunk mojosetup
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Then you'll need to point CMake at it:
cd mojosetup
ccmake .
Tweak the build settings to your liking. You'll want to set CMAKE_BUILD_TYPE
to MinSizeRel, to make the compiled binary be as small as possible, and
then trim out features you don't need. For example, you can drop the
HTTP and FTP support to save about 25 kilobytes on the binary. You can also
drop support for various archive types, pieces of Lua you don't plan to use,
etc.
CMake will get you project files for whatever development environment you use
(Makefiles, XCode, Visual Studio, etc). Build the project. You should end
up with some shared libraries for whatever GUIs you left enabled, and
a mojsetup binary. Strip the debug symbols and put these aside for later.
If you are building MojoSetup without the Lua parser, you'll want to build
the separate Lua compiler (MOJOSETUP_BUILD_LUAC in ccmake). That will produce
a "mojoluac" binary. Put that aside for later, too.
Set up the installer filesystem structure:
This is fairly easy. The installer eventually wants to see a directory
tree like this:
data/
scripts/
guis/
Jan 21, 2008
Jan 21, 2008
63
meta/
May 16, 2007
May 16, 2007
65
This is called the "Base Archive," even if it's a real directory tree in the
66
67
68
69
70
71
72
73
74
75
physical filesystem and not in an actual archive, such as a .zip file.
"data" is where the installer looks for files included in the installer itself
that need installation (as opposed to those being read from the network
or a CD-ROM, etc). READMEs and EULAs go in here, too. The installer
doesn't care how things under data/ are arranged.
"guis" is where the installer looks for those shared libraries that got
built in the first step. Copy them in here, if you built any.
Jan 21, 2008
Jan 21, 2008
76
77
78
"meta" contains installer metadata: graphics for splash screens, etc. It's sort
of a catch-all for things that don't fit elsewhere.
79
80
"scripts" is where Lua scripts go. You'll put your config file in here
(config.lua), the translation table (localizations.lua), and whatever other
May 16, 2007
May 16, 2007
81
82
scripts come with MojoSetup, which are required application logic. The
installer will not work if you don't include all these files! This
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
directory can hold either .lua files (source code), or their .luac
equivalents. If you built MojoSetup without the Lua parser to save space,
you'll need to compile the .lua sources into .luac objects now, or the
installer won't know what to do with them. It's safe to compile them even
if you include the parser.
cd scripts
../mojoluac -o config.luac config.lua
cd ..
You can strip debug symbols from the compiled scripts to save more space,
but you'll get less useful information if there's a script error:
cd scripts
../mojoluac -s -o config.luac config.lua
cd ..
Once you finish constructing this directory tree, put it aside for later.
Write a config file:
This is the complicated part, and where most of your effort will be spent.
This document will try to cover all the provided facilities, but as the
configuration file also provides a robust programming language, not only
is the full scope beyond this document, you can also accomplish all sorts
of things we haven't even considered yet.
Configuration files are Lua scripts. The Lua language and runtime library is
documented at http://www.lua.org/, and they sell an excellent book called
"Programming in Lua" which is a fast read and will demonstrate all manners
of wild and interesting features of the language. That being said, most
people rolling config files don't need any significant Lua expertise, and
basic config files don't need any programming experience at all.
May 16, 2007
May 16, 2007
118
119
120
MojoSetup provides some functions for your benefit, if you want to add any
programming logic to your config. These are documented below.
121
The config file is named config.lua, and it must be a text file in UTF-8
May 16, 2007
May 16, 2007
122
123
124
encoding. If you are doing any programming, you may use any symbol you like,
so long as the name isn't "Setup", "MojoSetup", or any of the standard Lua
runtime names like "string" or "table".
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
Configuration files are a hierarchy of elements that take this form:
Setup.DataType
{
someattribute = value1,
someotherattribute = value2,
}
Elements can nest:
Setup.DataType
{
someattribute = value1,
someotherattribute = value2,
Setup.AnotherDataType
{
something = value3,
}
}
May 16, 2007
May 16, 2007
147
148
149
Case is important! Setup.Option and Setup.option are NOT the same thing!
150
151
152
153
154
155
156
157
158
159
160
161
162
163
Here are the elements, and the attributes they can possess.
There are some specifiers by the attributes:
mustExist: Error if is nil (usually if you don't specify it). The other
"mustBe" descriptions consider nil to be valid when mustExist
isn't explicitly mentioned.
no default: This attribute will not have a default if not specified.
default X: This attribute defaults to X if not specified.
mustBeString: Error if isn't a string.
cantBeEmpty: Error is this string is "". String can be nil, though.
mustBeBool: Error if isn't true, false, or nil.
mustBeFunction: Error if isn't a function (can be C or Lua).
mustBeNumber: Error if isn't a number.
mustBeUrl: Error if isn't a string that matches the regexp "^.+://.-/.*".
May 18, 2007
May 18, 2007
164
mustBePerms: Error if isn't a valid permissions string for the platform.
165
166
167
168
169
170
171
172
173
mustBeStringOrTableOfStrings: Error if isn't a string or an array of strings.
Attributes that aren't explicitly specified take on their default value. In
cases without a default, they are effectively set to Lua's "nil" value.
This makes boolean values be treated as "false." Plan accordingly.
Setup.Package:
May 16, 2007
May 16, 2007
174
All configurations need at least one Setup.Package element. Every other
175
176
177
178
179
180
181
182
183
184
element is added under Setup.Package. One full run of the installer is
done for each Setup.Package. You can have multiple packages in one file, and
the installer will run through for each one as if the program was started
multiple times. If there are multiple packages and an installation failure
occurs, all successfully-installed packages will remain. In most cases, you
only want one Setup.Package and should use Setup.Option to cull pieces
of the package.
Setup.Package attributes:
Feb 13, 2008
Feb 13, 2008
185
186
187
188
189
190
191
192
193
194
195
196
197
198
vendor (no default, mustExist, mustBeString, cantBeEmpty)
This is a unique identifier for your organization. This should be in the
format "companyname.dom" ... the hope is that your primary website is
a unique identifier for your company. If your website is www.icculus.org,
you'd enter your vendor setting as "icculus.org" ... just the hostname and
top-level domain. This is used largely by the OS to maintain packages
(Mac OS X application bundles, vendor IDs for Unix desktop menus, etc).
This is, in theory, never shown to the user, so you don't need this to
actually exist as a website with meaningful content, so long as you can
reasonably assure that the string is unique and follows the "host.dom"
format.
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
id (no default, mustExist, mustBeString, cantBeEmpty)
This is a unique identifier for your package. Currently it is used as
the base of the install path, but future features may use it for other
things. Set this to something short, unique, and human-readable, like
"mygame".
disabled (no default, mustBeBool)
If this is true, the entire package will be skipped by the installer. You
probably want this to be true, but you might need to programmatically shut
off a whole package.
description (no default, mustExist, mustBeString, cantBeEmpty)
This is your product's name. This will be displayed in the title bar, and
other locations during installation.
version (no default, mustExist, mustBeString, cantBeEmpty)
This is the version of this package. This is arbitrary, and doesn't matter
to the installer what you specify. It's usually a value like "1.0" or
"beta3"
The installer may use this for future features, like upgrading previous
installations.
destination (no default, mustBeString, cantBeEmpty)
This attribute can be used to force the installation into a specific
location in the physical filesystem. Unless you are building something
very specific (like device drivers for a well-defined platform), you
probably should not use this attribute. If destination isn't forced,
May 16, 2007
May 16, 2007
236
237
the installer will prompt the user, possibly recommmending locations
to him.
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
recommended_destinations (no default, mustBeStringOrTableOfStrings)
This attribute lets you define some favorable places to install the
package. You can have a table of strings or a single string:
recommended_destinations = MojoSetup.info.homedir,
...or...
recommended_destinations = { "/usr/local/games", "/opt/games" },
These strings are presented in the UI to the user when selecting a
install destination, but they can override them with their own choice.
The "id" attribute is appended to these before displaying to the end
user, so they'll see, for example, "/usr/local/games/mygame" and
"/opt/games/mygame" ... if a listed directory is determined to be
unwritable to the user (lack of permissions), it will be removed from the
list before presentation to the user.
precheck (no default, mustBeFunction)
If this attribute is defined, it is called by the installer after the
configuration is parsed and the GUI has started, but before the user has
interacted with the installer at all. It passes the finalized
Setup.Package table as a parameter.
preflight (no default, mustBeFunction)
If this attribute is defined, it is called by the installer after the
user has chosen options to install. The heavy-lifting of the installer
is about to begin: downloading files and installing the Package. It
passes the finalized Setup.Package table as a parameter.
preinstall (no default, mustBeFunction)
If this attribute is defined, it is called by the installer after all
needed external files are downloaded and installation of files is about
to begin. It passes the finalized Setup.Package table as a parameter.
postinstall (no default, mustBeFunction)
If this attribute is defined, it is called by the installer after the
entire package was successfully installed to disk. It passes the finalized
Setup.Package table as a parameter.
Jan 13, 2008
Jan 13, 2008
288
289
290
291
292
293
updateurl (no default, mustBeUrl)
This is written to the manifest files for the aid of external tools, but
isn't currently used by MojoSetup itself.
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
splash (no default, mustBeString, cantBeEmpty)
(!!! FIXME) This attribute is for future expansion.
url (no default, mustBeString, cantBeEmpty)
(!!! FIXME) This attribute is for future expansion.
once (default true, mustBeBool)
(!!! FIXME) This attribute is for future expansion.
category (default "Games", mustBeString, cantBeEmpty)
(!!! FIXME) This attribute is for future expansion.
promptoverwrite (default true, mustBeBool)
(!!! FIXME) This attribute is for future expansion.
Please refer to Setup.File.allowoverwrite for now.
binarypath (no default, mustBeString, cantBeEmpty)
(!!! FIXME) This attribute is for future expansion.
superuser (default false, mustBeBool)
(!!! FIXME) This attribute is for future expansion.
Jan 24, 2008
Jan 24, 2008
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
write_manifest (default true, mustBeBool)
If true, MojoSetup will create a hidden metadata directory in the
destination folder with lists of all files installed and some other
pertinent facts about the installed package. This allows other tools to
operate on the installation later, such as a software updater program or
an uninstaller. MojoSetup will also install tools in the metadata
directory to aid in manifest management and uninstallation.
Unless your package is a well-defined, static installation, you probably
want this. It adds a couple hundred kilobytes to the final install in the
filesystem (but not your download package), and puts an extra directory
in there (Usually called ".mojosetup", and hidden from the end-user).
support_uninstall (default true, mustBeBool)
If true, MojoSetup will include a means for the end-user to uninstall
this package. On Unix, this takes the form of a shell script in the
destination folder, on Windows, this hooks your package into the
"Add/Remove Programs" control panel.
If you enable support_uninstall, you must enable write_manifest, or the
installer will refuse to run to alert you to the problem immediately.
Please note that if you haven't anything outside the destination folder
to clean up, uninstall is merely a user-friendly formality; MojoSetup
doesn't implicitly write anything to the system outside this folder, so
the user can just drag it to the trash in the basic usage scenario. Indeed,
on Mac OS X, this is Apple's recommended "uninstall" procedure. On Windows,
hooking into Add/Remove Programs is probably desirable in all cases.
Enabling this option adds very little overhead to the normal install, once
you swallow the cost from write_manifest.
Jul 2, 2007
Jul 2, 2007
366
Setup.Eula:
Jul 2, 2007
Jul 2, 2007
368
369
370
371
372
373
374
375
376
377
378
This element can be a child of Setup.Package or Setup.Option. It can be
used to display a license agreement to the end user, which they must agree
to before installation can proceed. If they refuse the license, the installer
terminates without installing anything (or, in the Setup.Option case, steps
back in the installation to let them change options, so they can disable the
installation of whatever they disagree with). There can be multiple
Setup.Eula elements listed, in which case the end user will be asked to
agree to each license individually before installation may proceed. The
Setup.Package licenses are shown first before any other interaction occurs,
and the Setup.Option licenses are shown after the user selects her install
options.
Jul 2, 2007
Jul 2, 2007
380
Setup.Eula attributes:
381
382
383
description (no default, mustExist, mustBeString, cantBeEmpty)
Jul 2, 2007
Jul 2, 2007
384
This is a brief description of the license, used for title bars and such.
385
386
387
388
source (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
389
This is a filename in the Base Archive's "data" directory that contains
Jul 2, 2007
Jul 2, 2007
390
the license text. Currently this must be a text file in UTF-8 encoding.
Jul 2, 2007
Jul 2, 2007
393
Setup.Readme:
394
395
This element is a child of Setup.Package. It can be used to display a
Jul 2, 2007
Jul 2, 2007
396
397
398
399
400
401
information about the package to the end user, such as a welcome message,
FAQs, or other orientation information. There can be multiple Setup.Readme
elements listed, in which case the end user will be shown each readme
individually before installation may proceed. The readmes are shown after
any EULA elements in the Setup.Package. EULA elements in a Setup.Option
are shown later, however.
Jul 2, 2007
Jul 2, 2007
403
Setup.Readme attributes:
404
405
406
description (no default, mustExist, mustBeString, cantBeEmpty)
Jul 2, 2007
Jul 2, 2007
407
This is a brief description of the Readme, used for title bars and such.
408
409
410
411
source (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
412
This is a filename in the Base Archive's "data" directory that contains
Jul 2, 2007
Jul 2, 2007
413
the readme text. Currently this must be a text file in UTF-8 encoding.
414
415
416
417
418
419
420
421
422
423
424
425
Setup.Media:
This element is required if you need to install data from removable media,
such as a DVD-ROM drive. The installer needs a means to identify the
media as the correct source when it is connected to the system.
Setup.Media attributes:
id (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
426
427
A unique specifier for this media, such as "disc1" or "game-disc". This
will be used for Setup.File.source: "media://game-disc/path/filename.zip"
428
429
430
431
description (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
432
433
434
A human-readable description of this media, such as "MyGame Disc 2". This
string will be used when the end user must be prompted to insert a new
piece of media to continue the installation.
435
436
437
438
uniquefile (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
439
440
441
442
This is a path that is unique to this media, relative to its root
directory, such as "sounds/guitar.wav". The installer looks at all
media available to the system until it finds this path exists, to
determine if the correct media has been made available by the end user.
May 16, 2007
May 16, 2007
445
Setup.Option:
May 16, 2007
May 16, 2007
447
448
449
450
This element defines an optional section of the install, and is a child
of Setup.Package. You must have at least one Setup.Option in your
configuration, but you can make it mandatory with the "required" attribute
if you don't want it to be actually optional.
May 16, 2007
May 16, 2007
452
453
454
The GUI will show all selectable options to the end user, and they can
pick and choose the parts they want. If there are no optional portions of
the install, the GUI will skip the option selection screen.
May 16, 2007
May 16, 2007
456
457
458
Setup.Options can nest. If a parent option is unchecked in the GUI, its
child options become disabled and will be considered unchecked also when
installation proceeds.
May 16, 2007
May 16, 2007
460
461
462
463
Setup.Option
{
description = "Wing Commander 1"
source = "base:///wc1.zip",
May 16, 2007
May 16, 2007
465
466
467
468
469
470
471
-- This option can only install if "Wing Commander 1" is checked too.
Setup.Option
{
description = "WC1 Speech Pack",
source = "base:///wc1sp.zip",
},
},
May 16, 2007
May 16, 2007
474
Setup.Option attributes:
May 16, 2007
May 16, 2007
476
disabled (default false, mustBeBool)
May 16, 2007
May 16, 2007
478
479
480
481
If true, this whole group (including all children) will be removed from
the GUI, and the installer will treat all the child options as unchecked.
If an option has both "required" and "disabled" set to true, then
"disabled" takes precedence.
May 16, 2007
May 16, 2007
484
value (default false, mustBeBool)
May 16, 2007
May 16, 2007
486
487
If true, the checkbox will be checked by default in the GUI. Checked
options are installed.
May 16, 2007
May 16, 2007
490
required (default false, mustBeBool)
May 16, 2007
May 16, 2007
492
493
494
495
If true, the option won't be shown to the end user, but will just be
treated as if it was checked when installation proceeds. If an option
has both "required" and "disabled" set to true, then "disabled" takes
precedence.
May 16, 2007
May 16, 2007
498
bytes (no default, mustExist, mustBeNumber)
May 16, 2007
May 16, 2007
500
501
502
503
This is the size, in bytes, of files this option will write to disk. The
installer uses this to determine space requirements for the total install.
If you don't know the size, you should set this to -1, but this will
disable some functionality.
May 16, 2007
May 16, 2007
506
description (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
508
509
This string will be shown to the end user, as a label with the GUI's
checkbox.
Jan 12, 2008
Jan 12, 2008
512
513
514
515
516
517
518
tooltip (no default, mustBeString, cantBeEmpty)
This string will be used in mouseover "tooltips" in GUI environments for
this option's UI widget. There is no guarantee that they will be shown to
a user in any GUI target, so don't rely on them!
May 16, 2007
May 16, 2007
519
Setup.OptionGroup:
May 16, 2007
May 16, 2007
521
522
523
524
525
This element can be the parent or child of Setup.Option, or a child of
Setup.Package. It contains of a collection of Setup.Option elements.
The children Setup.Options will be grouped radio buttons in the GUI instead
of individual checkboxes. As such, only one child Setup.Option in an
Setup.OptionGroup will be checked in the GUI.
May 16, 2007
May 16, 2007
527
528
529
530
531
532
533
Setup.OptionGroup
{
description = "Language",
Setup.Option { description = "English", source = "base:///en.zip" },
Setup.Option { description = "French", source = "base:///fr.zip" },
Setup.Option { description = "German", source = "base:///fr.zip" },
},
May 16, 2007
May 16, 2007
535
Setup.OptionGroup attributes:
May 16, 2007
May 16, 2007
537
disabled (no default, mustBeBool)
May 16, 2007
May 16, 2007
539
540
541
If true, this option (including all children) will be removed from
the GUI, and the installer will treat this and all child options as
unchecked.
May 16, 2007
May 16, 2007
544
description (no default, mustExist, mustBeString, cantBeEmpty)
May 16, 2007
May 16, 2007
546
547
This string will be shown to the end user, as a label with the GUI's
radio button group.
Jan 12, 2008
Jan 12, 2008
550
551
552
553
554
555
556
tooltip (no default, mustBeString, cantBeEmpty)
This string will be used in mouseover "tooltips" in GUI environments for
this option's UI widget. There is no guarantee that they will be shown to
a user in any GUI target, so don't rely on them!
May 16, 2007
May 16, 2007
557
Setup.File:
May 16, 2007
May 16, 2007
559
560
561
562
This element specifies a fileset, a collection of files, to install. These
are children of Setup.Option, and you can specify as many as you like per
option. Each Setup.File represents an "archive," that is, some set of files,
such as a .zip file or a directory.
May 16, 2007
May 16, 2007
564
Setup.File attributes:
May 16, 2007
May 16, 2007
566
source (no default, mustBeUrl)
May 16, 2007
May 16, 2007
568
569
570
571
This is a URL that provides the source for this fileset. You can only
specify archives (directories and files like .zip, .tar, etc), not
specific individual files. If you need a specific file, use its parent
directory here and a "wildcards" attribute.
May 16, 2007
May 16, 2007
573
There are some standard and non-standard URL handlers you can specify:
May 16, 2007
May 16, 2007
575
base:///path/file.ext
May 16, 2007
May 16, 2007
577
578
579
This references an archive in the Base Archive, where the "data"
directory is the root...so the above looks for data/path/file.ext in
the Base Archive.
May 16, 2007
May 16, 2007
581
This can install from an archive inside an archive, like this:
May 16, 2007
May 16, 2007
583
base:///mydir/outside.zip/internalpath/inside.tar
May 16, 2007
May 16, 2007
586
media://id/path/file.ext
May 16, 2007
May 16, 2007
588
589
590
591
This references a file on an external media with a specific id,
as defined in a Setup.Media element. The user will be prompted for
the correct media if the installer can't find it. This can install
archives-in-archives, like the base:/// version can.
May 16, 2007
May 16, 2007
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
ftp://hostname.dom/path/file.ext
http://hostname.dom/path/file.ext
The references a file on an FTP or web server. These files will all be
downloaded before local files are installed. You may only specify
archives at this time, not individual files or directories.
MojoSetup must be built with support for the proper network protocol.
destination (no default, mustBeString, cantBeEmpty)
This attribute lets you, across the board, redirect files in this archive
to a specific destination. This is a path relative to the base of the
installation destination path. If the user specified an installation
destination of "/games/mygame", this attribute is "gamemod", and the
source produces a file "maps/level1.map", then the final file written to
disk would be "/games/mygame/gamemod/maps/level1.map".
After the path is prepared with this attribute, it is tested against the
"wildcards" attribute, and if it passes there, it is pushed through the
"filter" attribute.
wildcards (no default, mustBeStringOrTableOfStrings)
This is the first step to culling files from an archive or directory.
Files are only installed if they match a specified wildcard.
Wildcards are simple to use: they only allow '?' for single character
matches and '*' to match a sequence of characters. You may specify a
single string, or a list of wildcards, like this:
-- matches sounds/heroes/laser13.wav and sounds/villians/laser02.wav
wildcards = "sounds/*/laser??.wav"
...or...
-- everything in the maps, sounds, and graphics directories.
-- (this includes subdirs! '*' matches past '/' separators!)
wildcards = { "maps/*", "sounds/*", "graphics/*" }
filter (no default, mustBeFunction)
This is a function that takes one argument, a string that represents the
path of a single file relative to the root of the installation destination.
This function may return nil to choose not to install this file, which is
useful for culling files from an archive, or a string that represents a
new destination for the file, which is useful for renaming some files
on-the-fly:
May 16, 2007
May 16, 2007
644
645
646
647
648
649
650
651
652
filter = function(dest)
if string.match(dest, ".exe$") then
return nil -- skip Windows .exe files on Unix.
end
if dest == "SOMEFILE.TXT" then
return "somefile.txt" -- force this to lowercase.
end
return dest -- everything else can go through as-is.
end
May 18, 2007
May 18, 2007
654
655
656
657
658
659
660
661
662
663
664
665
666
667
Filters can optionally return a second argument, a string, that defines
the destination file's permissions. This can be omitted, or nil, to use
the default permissions:
filter = function(dest)
if dest == "mygame-binary" then
return dest, "0755" -- make sure it's executable.
end
return dest -- everything else just goes through as-is.
end
Please see the documentation for Setup.File's "permissions" attribute for
further discussion.
May 16, 2007
May 16, 2007
669
670
671
672
673
674
675
676
677
allowoverwrite (no default, mustBeBool)
If true, the installer will overwrite existing files without warning. If
false, the user will be prompted before overwriting each file.
Files are actually moved out of the way instead of overwritten, so the
installer can restore them if the install is cancelled or fails mid-way.
They are deleted only after a successful install.
May 18, 2007
May 18, 2007
679
680
permissions (no default, mustBePerms)
May 18, 2007
May 18, 2007
681
682
683
684
Override the permissions with which the files will be created. This is
a string, not a number...this allows both for future expansion (non-Unix
systems, extended attributes, etc), and works around the fact that Lua
does not have syntax for specifying octal numbers directly.
May 18, 2007
May 18, 2007
685
686
687
688
689
Currently this string maps to Unix permissions as an octal number:
"0644" would be read/write access for the user, and read-only for the
group and everyone else.
May 18, 2007
May 18, 2007
690
691
692
If set to nil or not specified, the new file's permissions will be
whatever is already associated with the file (such as the Unix permissions
in a .tar file's entry).
May 18, 2007
May 18, 2007
693
694
Please note that files coming from a real filesystem will have their
May 18, 2007
May 18, 2007
695
696
697
defaults overridden by MojoSetup (to "0644"), since many operating systems
tend to report every file on a CD-ROM as read-only and executable, which
is frequently not what you want in the installed copy. Plan accordingly.
May 18, 2007
May 18, 2007
698
699
700
You can return a permissions string as the second value from your filter
function as well, which may be more efficient if you only need to change
May 18, 2007
May 18, 2007
701
702
703
704
705
706
a few files, (each Setup.File has to iterate the whole archive, so you
want to avoid specifying multiple Setup.Files for one archive when
possible), or need to adjust permissions in only a portion of a downloaded
archive. This attribute applies permissions to every file installed
through this element. If this attribute is set and the filter returns a
non-nil permission, the filter takes precedence.
May 18, 2007
May 18, 2007
707
708
Feb 13, 2008
Feb 13, 2008
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
Setup.DesktopMenuItem:
This element specifies a menu item that will be installed in the system
desktop menu: this might be the "Applications" dropdown in the Gnome panel,
or the "Start" bar on Windows, for example. This can be a child of
Setup.Option (in which case it is only considered for installation if the
option itself is too), or Setup.Package (in which case it is always
considered for installation). Some of this element's properties are ignored
on some operating systems, but they are still required both for
cross-platform safety and future expansion.
Setup.DesktopMenuItem attributes:
disabled (no default, mustBeBool)
If this is true, the menu item will be skipped by the installer. You
probably want this to be true, but you might need to programmatically shut
off specific menu items.
name (no default, mustExist, mustBeString, cantBeEmpty)
This is the proper name of the item to be installed ("Firefox").
genericname (no default, mustExist, mustBeString, cantBeEmpty)
This is a generic name for the item to be installed ("Web Browser").
tooltip (no default, mustExist, mustBeString, cantBeEmpty)
This is used as a tooltip for the item by the OS when the user hovers
the mouse pointer over it.
builtin_icon (no default, mustBeBool)
If this is true, then "icon" refers to a platform-dependent standard
icon. Currently, this only makes sense on Unix systems that follow
the freedesktop.org standards. If this is false, then "icon" refers
to a file, relative to the installation's destination directory, which
the must be installed through a Setup.File. Most installers should set
this to false (the default) unless they know what they are doing.
icon (no default, mustExist, mustBeString, cantBeEmpty)
The icon to use with this menu item. Please see builtin_icon for info
on what this string means. The format of files that may be used as icons
varies from platform to platform; you may need to install a different
file programmatically, based on the value of MojoSetup.info.platform.
commandline (no default, mustExist, mustBeString, cantBeEmpty)
This is the command line that will be used to launch the application
when the end user clicks on the desktop menu item.
category (no default, mustExist, mustBeStringOrTableOfStrings)
This is a category (or array of categories) that the menu item applies
to. You can choose several, but one is usually less confusing. Valid
choices are currently: AudioVideo, Development, Education, Game, Graphics, Network,
Office, Settings, System, Utility.
mimetype (no default, mustBeStringOrTableOfStrings)
This is a MIME type (or array of MIME types) that the menu item can handle.
For example, if you are installing an image viewer, you might specify:
mimetype={"image/jpeg", "image/png"}; ... this is optional, you don't
have to specify any mimetypes at all.
!!! FIXME: there is currently no way for an installer to inform the system
!!! FIXME: of associations between new file extensions and mimetypes.
!!! FIXME: Things that collect mime info themselves, like web browsers
!!! FIXME: and email clients, can use new apps this way, however.
May 16, 2007
May 16, 2007
786
Add any localized strings:
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
If you added strings to the installer or your config file that you want
translated at runtime, you need to add them to localization.lua. This is
a Lua script, too, of course, but you really should treat it like a basic
config file.
Don't remove strings that are already in the file...MojoSetup uses these
internally. Just add your own strings.
The format looks something like this:
["Yes"] = {
es = "Si";
fr = "Oui";
};
As you can see, the ["Yes"] is a string to translate. These are always English
by convention, but this is whatever the string you wish to translate. Please
note that the brackets are important, and only used on this specific string.
The fields in this structure are language abbreviations that match a user's
locale and the string of translated text.
Please note that you can do locale-specific translations, too:
["colors"] = {
en_UK = "colours";
};
All strings in this file (and all Lua scripts) are UTF-8 encoded. Using a
high-ASCII character will not work like you expect at runtime!
These lookup tables are used at runtime to translate strings, both by you and
internally by MojoSetup. You can do a translation by calling:
MojoSetup.translate("colors")
We recommend making a convenience function like this at the top of your
config.lua...
local function _ = MojoSetup.translate
...so that you have a convention for translations that cause minimal clutter:
Setup.Option {
description = _("Level editor utility"),
-- ...etc...
}
May 16, 2007
May 16, 2007
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
Package up the final file for distribution:
Now you have a MojoSetup binary and a directory tree containing your data, GUI
plugins, and scripts (including the config.lua you just wrote). Now you just
need to glue them together. MojoSetup will attempt to look at itself as an
archive on startup, which works in the same way "self-extracting" exe files
worked on other operating systems. If you want MojoSetup to be
self-extracting, zip your directory tree up and append it to the binary:
zip -9r mydata.zip data guis scripts
cat mydata.zip >> mojosetup
Now rename "mojosetup" to something meaningful (mygame-1.0-linux-x86.bin or
whatever), and you've got an installer.
If you have the luxury of a real filesystem (inside a disk image or on a CD
you are shipping, for example), MojoSetup will use the binary's directory
if it doesn't find a zipfile appended to the binary itself, so you can just
have "data", "scripts" and "guis" in the same directory as "mojosetup" to
have it work, too.
Now you're done! Give your installer to the public.
MojoSetup-provided globals:
Your config file is a Lua script, and as such, has access to all of Lua's
runtime library (presuming you didn't disable it when building MojoSetup)
and several other bits of MojoSetup-specific functionality. Everything the
installer provides to your script is under the "MojoSetup" table, so as not
to pollute the namespace. Also, the config files use the "Setup" table for
the basic config schema. Everything else is free game. Here are the globals
that MojoSetup provides:
Jan 12, 2008
Jan 12, 2008
875
876
877
878
879
880
881
882
883
MojoSetup.format(fmt, ...)
Format a string, sort of (but not exactly!) like sprintf().
The only formatters accepted are %0 through %9 (and %%), which do not
have to appear in order in the string, but match the varargs in the
order they are passed to the function.
format('%1 %0 %1 %%', 'X', 'Y', 'Z') will return the string: 'Y X Y %'
May 16, 2007
May 16, 2007
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
MojoSetup.fatal(errstr)
Display (errstr) to the end user and stop the installation. The installer
will attempt to clean up any half-finished installation, including rolling
back any files that would have been replaced had the installation succeeded.
You should never use error() in the standard Lua runtime; use this instead.
MojoSetup.runfile(script)
Run the code in a given Lua file. This is JUST the base filename. MojoSetup
will look for it in the Base Archive in the scripts/ directory, both as
script.luac and script.lua. This code chunk will accept no arguments, and
return no results, but it can change the global state and alter tables,
etc, so it can have lasting side effects. Will return false if the file
couldn't be loaded, or true if the chunk successfully ran. Will not return
if there's a runtime error in the chunk, as it will call MojoSetup.fatal()
instead. You should use this instead of the "require" function in the Lua
runtime, as require() won't respect the Base Archive.
MojoSetup.translate(str)
Find the proper translation for the end user's locale in the localization
table. Returns the translation, or the original string if no translation
was available. It's common to use this for shorthand:
local function _ = MojoSetup.translate
...so you can be less verbose: print(_("translate this string"))
MojoSetup.ticks()
Return the time, in milliseconds, that the process has been running.
MojoSetup.logwarning(str)
Write a warning to the installation log, if logging settings permit.
MojoSetup.logerror(str)
Write an error to the installation log, if logging settings permit.
MojoSetup.loginfo(str)
Write an info string to the installation log, if logging settings permit.
MojoSetup.logdebug(str)
Write debug info to the installation log, if logging settings permit.
Jan 25, 2008
Jan 25, 2008
942
943
944
945
946
947
948
949
950
951
952
953
954
MojoSetup.launchbrowser(url)
Launch a web browser to view the URL (url). This will try to launch a
new window/tab of the user's preferred handler for the url. Launching
"http://" URLs are probably always safe, other protocols, like "ftp://"
may or may not work, depending on what the platform offers.
Returns true if the browser launched, false otherwise. We can't know
if the URL actually loaded or rendered, just if the browser launched.
The hope is that the browser will inform the user if there's a problem
loading the URL.
Jul 2, 2007
Jul 2, 2007
955
MojoSetup.msgbox(title, str)
May 16, 2007
May 16, 2007
956
957
Show (str) to the user with a GUI message box, and wait until they click
Jul 2, 2007
Jul 2, 2007
958
an "OK" button. (title) is the message box's title.
May 16, 2007
May 16, 2007
959
960
Jul 2, 2007
Jul 2, 2007
961
MojoSetup.promptyn(title, str, defval)
May 16, 2007
May 16, 2007
962
963
964
Show (str) to the user with a GUI message box, and wait until they click
either a "YES" or "NO" button. Returns true if they clicked YES, false
Jul 2, 2007
Jul 2, 2007
965
966
967
if they clicked "NO". (title) is the message box's title.
(defval) is an optional boolean value: whether the default action should
be "YES" or "NO". If (defval) isn't specified, it defaults to false.
May 16, 2007
May 16, 2007
968
969
Jul 2, 2007
Jul 2, 2007
970
MojoSetup.promptynan(title, str, defval)
May 17, 2007
May 17, 2007
971
972
973
Show (str) to the user with a GUI message box, and wait until they click
either a "YES", "NO", "ALWAYS" or "NEVER" button. Returns the string
Jul 2, 2007
Jul 2, 2007
974
975
976
977
978
"yes", "no", "always", or "never". (title) is the message box's title.
(defval) is an optional boolean value: whether the default action should
be "YES" or "NO" ... "always" and "never" can not be the default, since
these tend to be destructive actions that the user should consciously
choose to do. If (defval) isn't specified, it defaults to false.
May 17, 2007
May 17, 2007
979
980
May 16, 2007
May 16, 2007
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
MojoSetup.stackwalk()
This writes a backtrace of the current Lua callstack to the installation
log, if logging settings permit debug-level logging.
MojoSetup.cmdline(flag)
See if a given flag was on the command line for the process.
MojoSetup.cmdline("nosound") will return true if "-nosound", "--nosound",
etc was on the command line. The option must start with a '-' on the
command line to be noticed by this function. Returns true if flag was on
the command line, false otherwise.
MojoSetup.cmdlinestr(flag, envr, deflt)
Get robust command line options, with optional default for missing ones.
If the command line was ./myapp --a=b -c=d ----e f