source: server/databases/lmdb.xml@ eace268c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules 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 eace268c was eace268c, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to lmdb-0.9.21.
Update to alsa-lib-1.1.4.1.
Update to libgcrypt-1.7.7.
Update to npth-1.5.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18785 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 "41a4f7b63212a00e53fabd8159008201">
10 <!ENTITY lmdb-size "140 KB">
11 <!ENTITY lmdb-buildsize "5.2 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 &lfs80_checked;
41 &gcc7_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&lmdb-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&lmdb-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &lmdb-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &lmdb-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &lmdb-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &lmdb-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <para condition="html" role="usernotes">
78 User Notes: <ulink url="&blfs-wiki;/lmdb"/>
79 </para>
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of lmdb</title>
84
85 <note><para>This package extracts to lmdb-LMDB_&lmdb-version;.</para></note>
86
87 <para>
88 Install <application>lmdb</application> by running the following
89 commands:
90 </para>
91
92<screen><userinput>cd libraries/liblmdb &amp;&amp;
93make &amp;&amp;
94sed -i 's| liblmdb.a||' Makefile</userinput></screen>
95
96 <para>
97 This package does not come with a test suite.
98 </para>
99
100 <para>
101 Now, as the <systemitem class="username">root</systemitem> user:
102 </para>
103
104<screen role="root"><userinput>make prefix=/usr install</userinput></screen>
105
106 </sect2>
107
108 <sect2 role="commands">
109 <title>Command Explanations</title>
110
111 <para>
112 <command>sed ... prefix ... Makefile</command>: The Makefile creates the
113 man pages directory during install if it is not present.
114 This fixes the directory location.
115 </para>
116
117 <para>
118 <command>sed ... liblmdb.a ... Makefile</command>: The package executables
119 use a static library so it must be created. This command suppresses installation
120 of the static library.
121 </para>
122
123 </sect2>
124
125 <sect2 role="content">
126 <title>Contents</title>
127
128 <segmentedlist>
129 <segtitle>Installed Program</segtitle>
130 <segtitle>Installed Library</segtitle>
131 <segtitle>Installed Directories</segtitle>
132
133 <seglistitem>
134 <seg>
135 mdb_copy, mdb_dump, mdb_load, and mdb_stat
136 </seg>
137 <seg>
138 liblmdb.so
139 </seg>
140 <seg>
141 None
142 </seg>
143 </seglistitem>
144 </segmentedlist>
145
146<!-- TODO
147 <variablelist>
148 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
149 <?dbfo list-presentation="list"?>
150 <?dbhtml list-presentation="table"?>
151
152 <varlistentry id="lmdb_copy">
153 <term><command>lmdb_copy</command></term>
154 <listitem>
155 <para>
156 A tool to copy an LMDB environment.
157 </para>
158 <indexterm zone="lmdb lmdb_copy">
159 <primary sortas="b-lmdb_copy">lmdb_copy</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163 </variablelist>
164-->
165 </sect2>
166
167</sect1>
Note: See TracBrowser for help on using the repository browser.