source: general/genlib/libyaml.xml@ 427b46a

11.0 11.1 11.2 11.3 12.0 12.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 427b46a was 9029db2, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Tag most of General Libraries and dependencies

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

  • Property mode set to 100644
File size: 4.3 KB
Line 
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
7 <!ENTITY yaml-download-http "https://github.com/yaml/libyaml/archive/&yaml-version;/libyaml-dist-&yaml-version;.tar.gz">
8 <!ENTITY yaml-download-ftp " ">
9 <!ENTITY yaml-md5sum "64219701e897efb467d95123a165ca01">
10 <!ENTITY yaml-size "84 KB">
11 <!ENTITY yaml-buildsize "6.6 MB (with tests)">
12 <!ENTITY yaml-time "0.1 SBU (with tests)">
13]>
14
15<sect1 id="libyaml" xreflabel="libyaml-&yaml-version;">
16 <?dbhtml filename="libyaml.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libyaml-&yaml-version;</title>
24
25 <indexterm zone="libyaml">
26 <primary sortas="a-libyaml">libyaml</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libyaml</title>
31
32 <para>
33 The <application>libyaml</application> package contains a C
34 library for parsing and emitting YAML (YAML Ain't Markup
35 Language) code.
36 </para>
37
38 &lfs101_checked;
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">libyaml 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;/libyaml"/>
83 </para>
84 </sect2>
85
86 <sect2 role="installation">
87 <title>Installation of libyaml</title>
88
89 <para>
90 Install <application>libyaml</application> by running the following
91 commands:
92 </para>
93
94 <screen><userinput>./bootstrap &amp;&amp;
95./configure --prefix=/usr --disable-static &amp;&amp;
96make</userinput></screen>
97
98<!--
99<screen><userinput>mkdir build &amp;&amp;
100cd build &amp;&amp;
101
102cmake -DCMAKE_INSTALL_PREFIX=/usr \
103 -DBUILD_SHARED_LIBS=true \
104 -DCMAKE_BUILD_TYPE=RELEASE .. &amp;&amp;
105make</userinput></screen> -->
106
107 <para>
108 To test the results, issue: <command>make check</command>.
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-lib">
154 <term><filename class="libraryfile">libyaml.so</filename></term>
155 <listitem>
156 <para>
157 contains API functions for parsing and emitting YAML code
158 </para>
159 <indexterm zone="libyaml libyaml-lib">
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.