diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-04-16 16:48:09 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-04-16 16:48:09 +0000 |
commit | f283e24fc2f1e2ee093a53e652185e2c902bd5bb (patch) | |
tree | a466381d7f9c70085b8db0b6f46f9e42e2f70297 /chapter06 | |
parent | 03e6064c94d19f1a61efe889031376aba48d9389 (diff) |
Fix man pages and descriptions in meson
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11402 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/meson.xml | 61 |
1 files changed, 53 insertions, 8 deletions
diff --git a/chapter06/meson.xml b/chapter06/meson.xml index 5bc2fce6b..12b88720e 100644 --- a/chapter06/meson.xml +++ b/chapter06/meson.xml @@ -50,6 +50,12 @@ <screen><userinput remap="install">python3 setup.py install</userinput></screen> + <para>At last, move Meson man pages to correct location:</para> + +<screen><userinput remap="install">mv -v /usr/lib/python3.6/site-packages/meson-&meson-version;-py3.6.egg/share/man/man1/*.1 \ + /usr/share/man/man1 +rm -r /usr/lib/python3.6/site-packages/meson-&meson-version;-py3.6.egg/share</userinput></screen> + </sect2> @@ -57,12 +63,12 @@ <title>Contents of Meson</title> <segmentedlist> - <segtitle>Installed Libraries</segtitle> + <segtitle>Installed programs</segtitle> <segtitle>Installed directory</segtitle> <seglistitem> - <seg>libmeson.so</seg> - <seg>/usr/share/doc/meson-&meson-version;</seg> + <seg>meson, mesonconf, mesonintrospect, mesontest, and wraptool</seg> + <seg>/usr/lib/python3.6/site-packages/meson-&meson-version;-py3.6.egg</seg> </seglistitem> </segmentedlist> @@ -71,16 +77,55 @@ <?dbfo list-presentation="list"?> <?dbhtml list-presentation="table"?> - <varlistentry id="libmeson"> - <term><filename class="libraryfile">libmeson</filename></term> + <varlistentry id="meson"> + <term><command>meson</command></term> <listitem> - <para>Contains multiple-precision math functions</para> - <indexterm zone="ch-system-meson libmeson"> - <primary sortas="c-libmeson">libmeson</primary> + <para>A high productivity build system</para> + <indexterm zone="ch-system-meson meson"> + <primary sortas="b-meson">meson</primary> </indexterm> </listitem> </varlistentry> + <varlistentry id="mesonconf"> + <term><command>mesonconf</command></term> + <listitem> + <para>A tool to configure Meson builds</para> + <indexterm zone="ch-system-meson mesonconf"> + <primary sortas="b-mesonconf">mesonconf</primary> + </indexterm> + </listitem> + </varlistentry> + + <varlistentry id="mesonintrospect"> + <term><command>mesonintrospect</command></term> + <listitem> + <para>A tool to extract information about a Meson build</para> + <indexterm zone="ch-system-meson mesonintrospect"> + <primary sortas="b-mesonintrospect">mesonintrospect</primary> + </indexterm> + </listitem> + </varlistentry> + + <varlistentry id="mesontest"> + <term><command>mesontest</command></term> + <listitem> + <para>Test tool for the Meson build system</para> + <indexterm zone="ch-system-meson mesontest"> + <primary sortas="b-mesontest">mesontest</primary> + </indexterm> + </listitem> + </varlistentry> + + <varlistentry id="wraptool"> + <term><command>wraptool</command></term> + <listitem> + <para>Source dependency downloader</para> + <indexterm zone="ch-system-meson wraptool"> + <primary sortas="b-wraptool">wraptool</primary> + </indexterm> + </listitem> + </varlistentry> </variablelist> </sect2> |