-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdws.xml
83 lines (83 loc) · 3.07 KB
/
dws.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" ?>
<projects>
<project name="drop">
<title>inter-project dependencies tool</title>
<description>Drop is an inter-project dependencies tool that binds functionality of source control systems, autoconf scripts, make and package managers. Its efficiency is measured by the time it takes to setup a random machine for code development first and subsequently the time spent in rebuilding the source base after any change (see doc/tutorial.book).
</description>
<maintainer>
<personname>Sebastien Mirolo</personname>
<email>[email protected]</email>
</maintainer>
<repository>
<dep name="make">
<!-- For some reason the Python XML parser throws up a not well-formed
exception on "<3.81" -->
<bin excludes="3.80">make</bin>
</dep>
<dep name="git-core">
<bin>git</bin>
</dep>
<!-- To build documentation as PDF -->
<dep name="xsltproc">
<bin>xsltproc</bin>
</dep>
<dep name="fop">
<bin>fop</bin>
</dep>
<!-- How to express >=4 when the python XML parser
throws malformed exceptions? -->
<alternates>
<alternate name="Darwin">
<dep name="docbook-xml">
<!-- The XSD schema is in docbook-xml while the processors
are in docbook-xsl. Note that the xsd is only used
to validate source docbook files.
-->
<share>.*/xml/(docbook)/5.0/xsd/docbook.xsd</share>
</dep>
<dep name="docbook-xsl-nons">
<!-- We have to link at the docbook-xsl directory level
because the stylesheet expects to find files looking
into into .. -->
<share>.*(docbook-xsl)/fo/docbook.xsl</share>
</dep>
</alternate>
<alternate name="Ubuntu">
<dep name="debhelper">
<bin>dh_builddeb</bin>
</dep>
<dep name="devscripts">
<bin>debuild</bin>
</dep>
<dep name="fakeroot">
<bin>fakeroot</bin>
</dep>
<dep name="docbook-xsl">
<!-- We have to link at the docbook-xsl directory level
because the stylesheet expects to find files looking
into into .. -->
<share>.*(docbook-xsl)/fo/docbook.xsl</share>
</dep>
</alternate>
<alternate name="Fedora">
<dep name="rpmdevtools">
<bin>rpmdev-setuptree</bin>
</dep>
<dep name="docbook5-style-xsl">
<!-- We have to link at the docbook-xsl directory level
because the stylesheet expects to find files looking
into into .. -->
<share>.*(docbook-xsl|xsl-ns-stylesheets)/fo/docbook.xsl</share>
</dep>
</alternate>
</alternates>
</repository>
<package name="Ubuntu">
<metainfo name="architecture">all</metainfo>
<metainfo name="section">devel</metainfo>
<dep name="python">
<bin>python</bin>
</dep>
</package>
</project>
</projects>