-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path0bootstrap.xml
36 lines (31 loc) · 1.4 KB
/
0bootstrap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" ?>
<interface xmlns="http://zero-install.sourceforge.net/2004/injector/interface">
<name>0bootstrap</name>
<summary>create a native package that installs 0install and a program</summary>
<description>
0bootstrap creates native binary packages (debs, RPMs, exes, etc) for use on systems
where 0install is not already present.
Unlike 0export, the packages do not contain the programs themselves. They are just
launchers that trigger 0install to get the actual program.
</description>
<homepage>https://docs.0install.net/tools/0bootstrap/</homepage>
<feed-for interface="http://0install.net/tools/0bootstrap-python.xml"/>
<group>
<command name="run" path="0bootstrap">
<runner interface="https://apps.0install.net/python/python.xml">
<version before="3"/>
</runner>
</command>
<command name="test" path="tests/testbootstrap.py">
<runner interface="https://apps.0install.net/python/python.xml">
<version before="3"/>
</runner>
</command>
<requires interface="https://apps.0install.net/0install/0install-python.xml">
<version not-before="1.0"/>
<environment insert="" name="PYTHONPATH"/>
</requires>
<!-- Use very high version number to treat local build as newer than any public version. -->
<implementation id="local" version="100-pre" stability="developer" local-path="."/>
</group>
</interface>