source: gnome/platform/tracker3.xml@ b4079e2

12.1 ken/TL2024 lazarus trunk xry111/llvm18
Last change on this file since b4079e2 was 337b22a, checked in by Douglas R. Reno <renodr@…>, 3 months ago

Tag GNOME Libraries

Off to Desktop next...

  • Property mode set to 100644
File size: 7.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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 tracker3-download-http
8 "&gnome-download-http;/tracker/3.6/tracker-&tracker3-version;.tar.xz">
9 <!ENTITY tracker3-download-ftp " ">
10 <!ENTITY tracker3-md5sum "7be27edcf56214277cdff6ebfd8cfbf0">
11 <!ENTITY tracker3-size "2.4 MB">
12 <!ENTITY tracker3-buildsize "51 MB (with tests)">
13 <!ENTITY tracker3-time "0.6 SBU (with tests)">
14]>
15
16<sect1 id="tracker3" xreflabel="Tracker-&tracker3-version;">
17 <?dbhtml filename="tracker3.html"?>
18
19
20 <title>Tracker-&tracker3-version;</title>
21
22 <indexterm zone="tracker3">
23 <primary sortas="a-Tracker3">Tracker3</primary>
24 </indexterm>
25
26 <sect2 role="package">
27 <title>Introduction to Tracker</title>
28
29 <para>
30 <application>Tracker</application> is the file indexing and search
31 provider used in the <application>GNOME</application> desktop environment.
32 </para>
33
34 &lfs121_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&tracker3-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&tracker3-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &tracker3-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &tracker3-size;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Estimated disk space required: &tracker3-buildsize;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated build time: &tracker3-time;
66 </para>
67 </listitem>
68 </itemizedlist>
69
70<!-- Not needed with 3.0.3, but keep around just in case
71 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
72 <itemizedlist spacing="compact">
73 <listitem>
74 <para>
75 Required patch:
76 <ulink url="&patch-root;/tracker-&tracker3-version;-upstream_fixes-1.patch"/>
77 </para>
78 </listitem>
79 </itemizedlist>
80-->
81
82 <bridgehead renderas="sect3">Tracker Dependencies</bridgehead>
83
84 <bridgehead renderas="sect4">Required</bridgehead>
85 <para role="required">
86 <xref linkend="json-glib"/>,
87 <xref linkend="libseccomp"/>, and
88 <xref linkend="vala"/>
89 </para>
90
91 <bridgehead renderas="sect4">Recommended</bridgehead>
92 <para role="recommended">
93 <xref linkend="gobject-introspection"/>,
94 <xref linkend="icu"/>,
95 <xref linkend="libsoup3"/>,
96 <xref linkend="pygobject3"/>,
97 <xref linkend="sqlite"/>, and
98 <xref linkend="tracker3-miners"/> (runtime)
99 </para>
100
101 <bridgehead renderas="sect4">Optional</bridgehead>
102 <para role="optional">
103 <xref linkend="asciidoc"/>,
104<!-- It looks like not used even if docs=true,
105 the pre-built doc is shipped in tarball and will be installed
106 <xref linkend="gi-docgen"/>
107-->
108 <xref linkend="graphviz"/>,
109 <xref linkend="libsoup"/>,
110 <ulink url="https://github.com/scop/bash-completion/">bash-completion</ulink>, and
111 <ulink url="https://github.com/snowballstem/snowball/">libstemmer</ulink>
112 <!--<ulink url="https://pypi.python.org/pypi/tap.py/">tap.py</ulink>
113 (for tests)-->
114 </para>
115
116 </sect2>
117
118 <sect2 role="installation">
119 <title>Installation of Tracker</title>
120
121 <para>
122 Fix the location to install the documentation into:
123 </para>
124
125<screen><userinput>mv docs/reference/libtracker-sparql/doc/{Tracker-3.0,tracker-&tracker3-version;} &amp;&amp;
126sed '/docs_name/s/Tracker-3.0/tracker-&tracker3-version;/' \
127 -i docs/reference/libtracker-sparql/meson.build</userinput></screen>
128
129 <para>
130 Install <application>Tracker</application> by running the following
131 commands:
132 </para>
133
134<screen revision="systemd"><userinput>mkdir build &amp;&amp;
135cd build &amp;&amp;
136
137meson setup --prefix=/usr \
138 --buildtype=release \
139 -Dman=false \
140 .. &amp;&amp;
141ninja</userinput></screen>
142
143<screen revision="sysv"><userinput>mkdir build &amp;&amp;
144cd build &amp;&amp;
145
146meson setup --prefix=/usr \
147 --buildtype=release \
148 -Dman=false \
149 -Dsystemd_user_services=false \
150 .. &amp;&amp;
151ninja</userinput></screen>
152
153 <para>
154 Now, as the <systemitem class="username">root</systemitem> user:
155 </para>
156
157<screen role="root"><userinput>ninja install</userinput></screen>
158
159 <para>
160 To test the results, issue: <command>meson configure -Ddebug=true
161 &amp;&amp; ninja test</command>.
162 The test suite should be run from a graphical session. <!--One test,
163 <filename>tracker: fts / fts</filename>, is known to fail due to an
164 incompatibility with SQLite-3.42.-->
165 </para>
166
167 </sect2>
168
169
170 <sect2 role="commands">
171 <title>Command Explanations</title>
172
173 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
174 href="../../xincludes/meson-buildtype-release.xml"/>
175
176 <para>
177 <parameter>-Dman=false</parameter>: This switch prevents the build
178 process from generating man pages. Omit this switch if you have
179 <xref linkend="asciidoc" role="nodep"/> installed and wish to generate
180 and install the man pages.
181 </para>
182
183 <para revision="sysv">
184 <parameter>-Dsystemd_user_services=false</parameter>: This switch prevents
185 the build process from installing systemd user services since they are
186 useless on SysV systems.
187 </para>
188
189 <para>
190 <command>meson configure -Ddebug=true</command>: This command enables
191 some debug checks necessary for the test suite. We don't want to
192 enable them for the installed Tracker 3 libraries and programs, so
193 we run the test suite after installation.
194 </para>
195
196 </sect2>
197
198
199 <sect2 role="content">
200 <title>Contents</title>
201
202 <segmentedlist>
203 <segtitle>Installed Programs</segtitle>
204 <segtitle>Installed Library</segtitle>
205 <segtitle>Installed Directories</segtitle>
206
207 <seglistitem>
208 <seg>
209 tracker3
210 </seg>
211 <seg>
212 libtracker-sparql-3.0.so
213 </seg>
214 <seg>
215 /usr/{include,lib}/tracker-3.0,
216 /usr/libexec/tracker3,
217 /usr/share/tracker3, and
218 /usr/share/doc/tracker-&tracker3-version; (optional)
219 </seg>
220 </seglistitem>
221 </segmentedlist>
222
223 <variablelist>
224 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
225 <?dbfo list-presentation="list"?>
226 <?dbhtml list-presentation="table"?>
227
228 <varlistentry id="tracker3-prog">
229 <term><command>tracker3</command></term>
230 <listitem>
231 <para>
232 is a control program for the indexer
233 </para>
234 <indexterm zone="tracker3 tracker3-prog">
235 <primary sortas="b-tracker3">tracker3</primary>
236 </indexterm>
237 </listitem>
238 </varlistentry>
239
240 <varlistentry id="libtracker3-sparql">
241 <term><filename class="libraryfile">libtracker-sparql-3.0.so</filename></term>
242 <listitem>
243 <para>
244 contains resource management and database functions
245 </para>
246 <indexterm zone="tracker3 libtracker3-sparql">
247 <primary sortas="c-libtracker3-sparql">libtracker-sparql-3.0.so</primary>
248 </indexterm>
249 </listitem>
250 </varlistentry>
251
252 </variablelist>
253
254 </sect2>
255
256</sect1>
Note: See TracBrowser for help on using the repository browser.