source: general/genlib/yaml.xml@ 7ccb4b5

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7ccb4b5 was 7ccb4b5, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Typo

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@21411 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[ce9b131]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[fc19db4f]7 <!ENTITY yaml-download-http "https://github.com/yaml/libyaml/archive/&yaml-version;/yaml-&yaml-version;.tar.gz">
[ce9b131]8 <!ENTITY yaml-download-ftp " ">
[731bf37a]9 <!ENTITY yaml-md5sum "2ad4119a57f94739cc39a1b482c81264">
10 <!ENTITY yaml-size "80 KB">
11 <!ENTITY yaml-buildsize "3.0 MB (with tests)">
12 <!ENTITY yaml-time "less than 0.1 SBU (with tests)">
[ce9b131]13]>
14
[b417f2a]15<sect1 id="yaml" xreflabel="YAML-&yaml-version;">
[ce9b131]16 <?dbhtml filename="yaml.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>YAML-&yaml-version;</title>
24
25 <indexterm zone="yaml">
26 <primary sortas="a-YAML">YAML</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to YAML</title>
31
32 <para>
33 The <application>YAML</application> package contains a C
34 library for parsing and emitting YAML (YAML Ain't Markup
35 Language).
36 </para>
37
[1005be4]38 &lfs84_checked;
[ce9b131]39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&yaml-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&yaml-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &yaml-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &yaml-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &yaml-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &yaml-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">YAML Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Optional</bridgehead>
77 <para role="optional">
78 <xref linkend="doxygen"/>
79 </para>
80
81 <para condition="html" role="usernotes">User Notes:
82 <ulink url="&blfs-wiki;/yaml"/>
83 </para>
84 </sect2>
85
86 <sect2 role="installation">
87 <title>Installation of YAML</title>
88
[731bf37a]89 <note>
90 <para>This package expands to libyaml-&yaml-version;, not
91 the expected yaml-&yaml-version;.</para>
92 </note>
93
[ce9b131]94 <para>
95 Install <application>YAML</application> by running the following
96 commands:
97 </para>
98
[7ccb4b5]99<screen><userinput>mkdir build &amp;&amp;
100cd build &amp;&amp;
[731bf37a]101
102cmake -DCMAKE_INSTALL_PREFIX=/usr \
103 -DBUILD_SHARED_LIBS=true \
104 -DCMAKE_BUILD_TYPE=RELEASE .. &amp;&amp;
[ce9b131]105make</userinput></screen>
106
107 <para>
[731bf37a]108 To test the results, issue: <command>make test</command>.
[ce9b131]109 </para>
110
111 <para>
112 Now, as the <systemitem class="username">root</systemitem> user:
113 </para>
114
115<screen role="root"><userinput>make install</userinput></screen>
116
117 </sect2>
118
119 <sect2 role="commands">
120 <title>Command Explanations</title>
121
122 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
123 href="../../xincludes/static-libraries.xml"/>
124
125 </sect2>
126
127 <sect2 role="content">
128 <title>Contents</title>
129
130 <segmentedlist>
131 <segtitle>Installed Programs</segtitle>
132 <segtitle>Installed Libraries</segtitle>
133 <segtitle>Installed Directories</segtitle>
134
135 <seglistitem>
136 <seg>
137 None
138 </seg>
139 <seg>
140 libyaml.so
141 </seg>
142 <seg>
143 None
144 </seg>
145 </seglistitem>
146 </segmentedlist>
147
148 <variablelist>
149 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
150 <?dbfo list-presentation="list"?>
151 <?dbhtml list-presentation="table"?>
152
153 <varlistentry id="libyaml">
154 <term><filename class="libraryfile">libyaml.so</filename></term>
155 <listitem>
156 <para>
157 contains API functions for parsing and emitting YAML.
158 </para>
159 <indexterm zone="yaml libyaml">
160 <primary sortas="c-libyaml">libyaml.so</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 </variablelist>
166
167 </sect2>
168
169</sect1>
Note: See TracBrowser for help on using the repository browser.