parent
83cc5ce4c5
commit
cbc329fc32
6 changed files with 75 additions and 15 deletions
@ -0,0 +1,39 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" |
||||||
|
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ |
||||||
|
<!ENTITY version SYSTEM "version.xml"> |
||||||
|
]> |
||||||
|
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude"> |
||||||
|
<bookinfo> |
||||||
|
<title>Foolib Reference Manual</title> |
||||||
|
<releaseinfo> |
||||||
|
for Foobar &version; |
||||||
|
</releaseinfo> |
||||||
|
<authorgroup> |
||||||
|
<author> |
||||||
|
<firstname>Jonny</firstname> |
||||||
|
<surname>Example</surname> |
||||||
|
<affiliation> |
||||||
|
<address> |
||||||
|
<email>unknown@example.com</email> |
||||||
|
</address> |
||||||
|
</affiliation> |
||||||
|
</author> |
||||||
|
</authorgroup> |
||||||
|
<copyright> |
||||||
|
<year>2015</year> |
||||||
|
<holder>Foobar corporation holdings ltd</holder> |
||||||
|
</copyright> |
||||||
|
</bookinfo> |
||||||
|
|
||||||
|
<reference id="foobar"> |
||||||
|
<title>Foobar library</title> |
||||||
|
<partintro> |
||||||
|
<para> |
||||||
|
This part documents Foobar libs. |
||||||
|
</para> |
||||||
|
</partintro> |
||||||
|
<xi:include href="xml/foo.xml"/> |
||||||
|
</reference> |
||||||
|
|
||||||
|
</book> |
@ -1,3 +1,9 @@ |
|||||||
gnome = import('gnome') |
gnome = import('gnome') |
||||||
|
|
||||||
gnome.gtkdoc('foobar', src_dir : '../include', install : true) |
cdata = configuration_data() |
||||||
|
cdata.set('VERSION', '1.0') |
||||||
|
configure_file(input : 'version.xml.in', |
||||||
|
output : 'version.xml', |
||||||
|
configuration : cdata) |
||||||
|
|
||||||
|
gnome.gtkdoc('foobar', src_dir : '../include', main_sgml : 'foobar-docs.sgml', install : true) |
||||||
|
@ -0,0 +1 @@ |
|||||||
|
@VERSION@ |
Loading…
Reference in new issue