mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-29 15:12:07 +00:00
34 lines
703 B
Modula-2
34 lines
703 B
Modula-2
|
<?xml version="1.0" standalone="yes"?>
|
||
|
<!-- q3rally is the name of the base product -->
|
||
|
<install product="q3rally"
|
||
|
desc="Q3Rally"
|
||
|
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 Q3Rally's
|
||
|
directory
|
||
|
The script could look like this:
|
||
|
#!/bin/sh
|
||
|
exec q3rally +set fs_game foo "$@"
|
||
|
exit 1
|
||
|
-->
|
||
|
<binary arch="any" libc="any"
|
||
|
symlink="foo"
|
||
|
binpath="startfoo">
|
||
|
startfoo
|
||
|
</binary>
|
||
|
<!--
|
||
|
extract archive in Q3Rally's directory.
|
||
|
the archive must contain a subdirectory of course
|
||
|
-->
|
||
|
<files>
|
||
|
foo-1.1.zip
|
||
|
</files>
|
||
|
</option>
|
||
|
</install>
|