source: server/databases/lmdb.xml@ 88377804

10.0 10.1 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 88377804 was 88377804, checked in by Pierre Labastie <pieere@…>, 4 years ago

tags for libreoffice deps and parts of gnome

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

  • Property mode set to 100644
File size: 4.5 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 lmdb-download-http "https://github.com/LMDB/lmdb/archive/LMDB_&lmdb-version;.tar.gz">
8 <!ENTITY lmdb-download-ftp " ">
9 <!ENTITY lmdb-md5sum "c3e3474daf4a59685d154cc7fc5c99ad">
10 <!ENTITY lmdb-size "144 KB">
11 <!ENTITY lmdb-buildsize "5.9 MB">
12 <!ENTITY lmdb-time "less than 0.1 SBU">
13]>
14
15<sect1 id="lmdb" xreflabel="lmdb-&lmdb-version;">
16 <?dbhtml filename="lmdb.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy: bdubbs $</othername>
20 <date>$Date: 2015-10-18 13:08:53 -0500 (Sun, 18 Oct 2015) $</date>
21 </sect1info>
22
23 <title>lmdb-&lmdb-version;</title>
24
25 <indexterm zone="lmdb">
26 <primary sortas="a-lmdb">lmdb</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to lmdb</title>
31
32 <para>
33 The <application>lmdb</application> package is a fast, compact, key-value
34 embedded data store. It uses memory-mapped files, so it has the read
35 performance of a pure in-memory database while still offering the
36 persistence of standard disk-based databases, and is only limited to the
37 size of the virtual address space
38 </para>
39
40 &lfs10_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&lmdb-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&lmdb-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &lmdb-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &lmdb-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &lmdb-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &lmdb-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <para condition="html" role="usernotes">
77 User Notes: <ulink url="&blfs-wiki;/lmdb"/>
78 </para>
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of lmdb</title>
83
84 <note>
85 <para>
86 This package extracts to lmdb-LMDB_&lmdb-version;.
87 </para>
88 </note>
89
90 <para>
91 Install <application>lmdb</application> by running the following
92 commands:
93 </para>
94
95<screen><userinput>cd libraries/liblmdb &amp;&amp;
96make &amp;&amp;
97sed -i 's| liblmdb.a||' Makefile</userinput></screen>
98
99 <para>
100 This package does not come with a test suite.
101 </para>
102
103 <para>
104 Now, as the <systemitem class="username">root</systemitem> user:
105 </para>
106
107<screen role="root"><userinput>make prefix=/usr install</userinput></screen>
108
109 </sect2>
110
111 <sect2 role="commands">
112 <title>Command Explanations</title>
113
114 <!--para>
115 <command>sed ... prefix ... Makefile</command>: The Makefile creates the
116 man pages directory during install if it is not present.
117 This fixes the directory location.
118 </para-->
119
120 <para>
121 <command>sed ... liblmdb.a ... Makefile</command>: The package executables
122 use a static library so it must be created. This command suppresses installation
123 of the static library.
124 </para>
125
126 </sect2>
127
128 <sect2 role="content">
129 <title>Contents</title>
130
131 <segmentedlist>
132 <segtitle>Installed Program</segtitle>
133 <segtitle>Installed Library</segtitle>
134 <segtitle>Installed Directories</segtitle>
135
136 <seglistitem>
137 <seg>
138 mdb_copy, mdb_dump, mdb_load, and mdb_stat
139 </seg>
140 <seg>
141 liblmdb.so
142 </seg>
143 <seg>
144 None
145 </seg>
146 </seglistitem>
147 </segmentedlist>
148
149<!-- TODO
150 <variablelist>
151 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
152 <?dbfo list-presentation="list"?>
153 <?dbhtml list-presentation="table"?>
154
155 <varlistentry id="lmdb_copy">
156 <term><command>lmdb_copy</command></term>
157 <listitem>
158 <para>
159 A tool to copy an LMDB environment.
160 </para>
161 <indexterm zone="lmdb lmdb_copy">
162 <primary sortas="b-lmdb_copy">lmdb_copy</primary>
163 </indexterm>
164 </listitem>
165 </varlistentry>
166 </variablelist>
167-->
168 </sect2>
169
170</sect1>
Note: See TracBrowser for help on using the repository browser.