diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-04-06 20:40:49 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-04-06 20:40:49 +0000 |
commit | 099320275c7cafd27442c5e5969c52ab216ac7eb (patch) | |
tree | 1ed824dc1138d00359e46809f50301e8f50a62b3 /misc | |
parent | d4db696130f0b585743777fdf6952e220d618326 (diff) | |
download | ioquake3-aero-099320275c7cafd27442c5e5969c52ab216ac7eb.tar.gz ioquake3-aero-099320275c7cafd27442c5e5969c52ab216ac7eb.zip |
sample loki-setup setup.xml for a mod
git-svn-id: svn://svn.icculus.org/quake3/trunk@1302 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'misc')
-rw-r--r-- | misc/setup/setup.xml.mod | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/misc/setup/setup.xml.mod b/misc/setup/setup.xml.mod new file mode 100644 index 0000000..ec6707f --- /dev/null +++ b/misc/setup/setup.xml.mod @@ -0,0 +1,33 @@ +<?xml version="1.0" standalone="yes"?> +<!-- ioquake3 is the name of the base product --> +<install product="ioquake3" + desc="ioquake3" + component="Foo Mod" + version="1.1" + > + + <option install="true"> + Foo + <!-- + install symlink 'foo' into $PATH, pointing to a script + called startfoo that gets installed into ioquake3's + directory + The script could look like this: + #!/bin/sh + exec ioquake3 +set fs_game foo "$@" + exit 1 + --> + <binary arch="any" libc="any" + symlink="foo" + binpath="startfoo"> + startfoo + </binary> + <!-- + extract archive in ioquake3's directory. + the archive must contain a subdirectory of course + --> + <files> + foo-1.1.zip + </files> + </option> +</install> |