source: gnome/platform/tracker3.xml@ bed8a11c

12.0 12.1 12.2 gimp3 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/spidermonkey128 xry111/xf86-video-removal
Last change on this file since bed8a11c was bed8a11c, checked in by Douglas R. Reno <renodr@…>, 16 months ago

Update to tracker-3.5.3

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