source: general/genlib/double-conversion.xml@ bf565e06

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 xry111/llvm18 xry111/xf86-video-removal
Last change on this file since bf565e06 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 18 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 4.7 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 double-conversion-download-http "https://github.com/google/double-conversion/archive/v&double-conversion-version;/double-conversion-&double-conversion-version;.tar.gz">
8 <!ENTITY double-conversion-download-ftp " ">
9 <!ENTITY double-conversion-md5sum "ccdcf76f6df822fb5488425e85707e55">
10 <!ENTITY double-conversion-size "6.7 MB">
11 <!ENTITY double-conversion-buildsize "55 MB (with tests)">
12 <!ENTITY double-conversion-time "0.1 SBU (with tests)">
13
14]>
15
16<sect1 id="double-conversion" xreflabel="double-conversion-&double-conversion-version;">
17 <?dbhtml filename="double-conversion.html"?>
18
19
20 <title>Double-conversion-&double-conversion-version;</title>
21
22 <indexterm zone="double-conversion">
23 <primary sortas="a-double-conversion">double-conversion</primary>
24 </indexterm>
25
26 <sect2 role="package">
27 <title>Introduction to Double-conversion</title>
28
29 <para>
30 The <application>Double-conversion</application> package contains a
31 library that facilitates binary-to-decimal and decimal-to-binary routines
32 for IEEE doubles.
33 </para>
34
35 &lfs112_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>
41 Download (HTTP): <ulink url="&double-conversion-download-http;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download (FTP): <ulink url="&double-conversion-download-ftp;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download MD5 sum: &double-conversion-md5sum;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download size: &double-conversion-size;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated disk space required: &double-conversion-buildsize;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated build time: &double-conversion-time;
67 </para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">Double-conversion Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Required</bridgehead>
74 <para role="required">
75 <xref linkend="cmake"/>
76 </para>
77
78 <para condition="html" role="usernotes">
79 User Notes: <ulink url="&blfs-wiki;/double-conversion"/>
80 </para>
81 </sect2>
82
83 <sect2 role="installation">
84 <title>Installation of Double-conversion</title>
85
86 <para>
87 Install <application>Double-conversion</application> by running the following
88 commands:
89 </para>
90
91
92<screen><userinput>mkdir build &amp;&amp;
93cd build &amp;&amp;
94
95cmake -DCMAKE_INSTALL_PREFIX=/usr \
96 -DBUILD_SHARED_LIBS=ON \
97 -DBUILD_TESTING=ON \
98 .. &amp;&amp;
99make</userinput></screen>
100
101 <para>
102 To test the results, issue: <command>make test</command>.
103 </para>
104
105 <para>
106 Now, as the <systemitem class="username">root</systemitem> user:
107 </para>
108
109<screen role="root"><userinput>make install</userinput></screen>
110 </sect2>
111
112 <sect2 role="commands">
113 <title>Command Explanations</title>
114
115 <para>
116 <parameter>-DBUILD_SHARED_LIBS=ON</parameter>: This switch forces cmake to build
117 a shared version of the library instead of the static version.
118 </para>
119
120 <para>
121 <parameter>-DBUILD_TESTING=ON</parameter>: This switch builds the test programs.
122 </para>
123 </sect2>
124
125 <sect2 role="content">
126 <title>Contents</title>
127
128 <segmentedlist>
129 <segtitle>Installed Programs</segtitle>
130 <segtitle>Installed Libraries</segtitle>
131 <segtitle>Installed Directories</segtitle>
132
133 <seglistitem>
134 <seg>
135 None
136 </seg>
137 <seg>
138 libdouble-conversion.so
139 </seg>
140 <seg>
141 /usr/include/double-conversion
142 </seg>
143 </seglistitem>
144 </segmentedlist>
145
146 <variablelist>
147 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
148 <?dbfo list-presentation="list"?>
149 <?dbhtml list-presentation="table"?>
150
151 <varlistentry id="libdouble-conversion">
152 <term><filename class="libraryfile">libdouble-conversion.so</filename></term>
153 <listitem>
154 <para>
155 provides binary-to-decimal and decimal-to-binary routines for IEEE doubles
156 </para>
157 <indexterm zone="double-conversion libdouble-conversion">
158 <primary sortas="c-libdouble-conversion">libdouble-conversion.so</primary>
159 </indexterm>
160 </listitem>
161 </varlistentry>
162 </variablelist>
163 </sect2>
164
165</sect1>
Note: See TracBrowser for help on using the repository browser.