source: general/genlib/json-c.xml@ 45ab6c7

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 45ab6c7 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 4.6 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 json-c-download-http "https://s3.amazonaws.com/json-c_releases/releases/json-c-&json-c-version;.tar.gz">
8 <!ENTITY json-c-download-ftp " ">
9 <!ENTITY json-c-md5sum "55f395745ee1cb3a4a39b41636087501">
10 <!ENTITY json-c-size "353 KB">
11 <!ENTITY json-c-buildsize "336 KB">
12 <!ENTITY json-c-time "less than 0.1 SBU">
13
14]>
15
16<sect1 id="json-c" xreflabel="JSON-C-&json-c-version;">
17 <?dbhtml filename="json-c.html"?>
18
19 <sect1info>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>JSON-C-&json-c-version;</title>
24
25 <indexterm zone="json-c">
26 <primary sortas="a-JSON-C">JSON-C</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to JSON-C</title>
31
32 <para>
33 The <application>JSON-C</application> implements a reference counting
34 object model that allows you to easily construct JSON objects in C,
35 output them as JSON formatted strings and parse JSON formatted strings
36 back into the C representation of JSON objects.
37 </para>
38
39 &lfs101_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&json-c-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&json-c-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &json-c-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &json-c-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &json-c-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &json-c-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">JSON-C Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="cmake"/>
80 </para>
81<!--
82 <bridgehead renderas="sect4">Optional</bridgehead>
83 <para role="Optional">
84 <xref linkend="doxygen"/> and
85 <xref linkend="graphviz"/> (for dot tool)
86 </para>
87-->
88 <para condition="html" role="usernotes">
89 User Notes: <ulink url="&blfs-wiki;/json-c"/>
90 </para>
91 </sect2>
92
93 <sect2 role="installation">
94 <title>Installation of JSON-C</title>
95<!--
96 <note>
97 <para>
98 This package does not support parallel build.
99 </para>
100 </note>
101-->
102 <para>
103 Install <application>JSON-C</application> by running the following
104 commands:
105 </para>
106
107<screen><userinput>mkdir build &amp;&amp;
108cd build &amp;&amp;
109
110cmake -DCMAKE_INSTALL_PREFIX=/usr \
111 -DCMAKE_BUILD_TYPE=Release \
112 -DBUILD_STATIC_LIBS=OFF \
113 .. &amp;&amp;
114make</userinput></screen>
115
116 <para>
117 To test the results, issue: <command>make test</command>.
118 </para>
119
120 <para>
121 Now, as the <systemitem class="username">root</systemitem> user:
122 </para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125 </sect2>
126
127 <sect2 role="commands">
128 <title>Command Explanations</title>
129
130 <para>
131 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
132 used to apply a higher level of compiler optimizations.
133 </para>
134
135 </sect2>
136
137 <sect2 role="content">
138 <title>Contents</title>
139
140 <segmentedlist>
141 <segtitle>Installed Programs</segtitle>
142 <segtitle>Installed Libraries</segtitle>
143 <segtitle>Installed Directories</segtitle>
144
145 <seglistitem>
146 <seg>
147 None
148 </seg>
149 <seg>
150 libjson-c.so
151 </seg>
152 <seg>
153 /usr/include/json-c
154 </seg>
155 </seglistitem>
156 </segmentedlist>
157
158 <variablelist>
159 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
160 <?dbfo list-presentation="list"?>
161 <?dbhtml list-presentation="table"?>
162
163 <varlistentry id="libjson-c">
164 <term><filename class="libraryfile">libjson-c.so</filename></term>
165 <listitem>
166 <para>
167 contains the <application>JSON-C</application> API functions
168 </para>
169 <indexterm zone="json-c libjson-c">
170 <primary sortas="c-libjson-c">libjson-c.so</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
175 </variablelist>
176
177 </sect2>
178
179</sect1>
Note: See TracBrowser for help on using the repository browser.