source: gnome/platform/tracker3.xml@ 858ab8a7

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 858ab8a7 was 7623a70, checked in by Xi Ruoyao <xry111@…>, 12 months ago

tracker3: Always install the doc into expected location, ...

and use a more clever way for testing.

  • Property mode set to 100644
File size: 7.9 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<!-- It looks like not used even if docs=true,
106 the pre-built doc is shipped in tarball and will be installed
107 <xref linkend="gi-docgen"/>
108-->
109 <xref linkend="graphviz"/>,
110 <xref linkend="libsoup"/>,
111 <ulink url="https://github.com/scop/bash-completion/">bash-completion</ulink>, and
112 <ulink url="https://github.com/snowballstem/snowball/">libstemmer</ulink>
113 <!--<ulink url="https://pypi.python.org/pypi/tap.py/">tap.py</ulink>
114 (for tests)-->
115 </para>
116
117 <para condition="html" role="usernotes">User Notes:
118 <ulink url="&blfs-wiki;/tracker3"/>
119 </para>
120 </sect2>
121
122 <sect2 role="installation">
123 <title>Installation of Tracker</title>
124
125 <para>
126 Fix the location to install the documentation into:
127 </para>
128
129<screen><userinput>mv docs/reference/libtracker-sparql/doc/{Tracker-3.0,tracker-&tracker3-version;} &amp;&amp;
130sed '/docs_name/s/Tracker-3.0/tracker-&tracker3-version;/' \
131 -i docs/reference/libtracker-sparql/meson.build</userinput></screen>
132
133 <para>
134 Install <application>Tracker</application> by running the following
135 commands:
136 </para>
137
138<screen revision="systemd"><userinput>mkdir build &amp;&amp;
139cd build &amp;&amp;
140
141meson setup --prefix=/usr \
142 --buildtype=release \
143 -Dman=false \
144 .. &amp;&amp;
145ninja</userinput></screen>
146
147<screen revision="sysv"><userinput>mkdir build &amp;&amp;
148cd build &amp;&amp;
149
150meson setup --prefix=/usr \
151 --buildtype=release \
152 -Dman=false \
153 -Dsystemd_user_services=false \
154 .. &amp;&amp;
155ninja</userinput></screen>
156
157 <para>
158 Now, as the <systemitem class="username">root</systemitem> user:
159 </para>
160
161<screen role="root"><userinput>ninja install</userinput></screen>
162
163 <para>
164 To test the results, issue: <command>meson configure -Ddebug=true
165 &amp;&amp; ninja test</command>.
166 The test suite should be run from a graphical session. One test,
167 <filename>tracker: fts / fts</filename>, is known to fail due to an
168 incompatiblity with SQLite-3.42.
169 </para>
170
171 </sect2>
172
173
174 <sect2 role="commands">
175 <title>Command Explanations</title>
176
177 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
178 href="../../xincludes/meson-buildtype-release.xml"/>
179
180 <para>
181 <parameter>-Dman=false</parameter>: This switch prevents the build
182 process from generating man pages. Omit this switch if you have
183 <xref linkend="asciidoc" role="nodep"/> installed and wish to generate
184 and install the man pages.
185 </para>
186
187 <para revision="sysv">
188 <parameter>-Dsystemd_user_services=false</parameter>: This switch prevents
189 the build process from installing systemd user services since they are
190 useless on SysV systems.
191 </para>
192
193 <para>
194 <command>meson configure -Ddebug=true</command>: This command enables
195 some debug checks necessary for the test suite. We don't want to
196 enable them for the installed Tracker 3 libraries and programs, so
197 we run the test suite after installation.
198 </para>
199
200 </sect2>
201
202
203 <sect2 role="content">
204 <title>Contents</title>
205
206 <segmentedlist>
207 <segtitle>Installed Programs</segtitle>
208 <segtitle>Installed Library</segtitle>
209 <segtitle>Installed Directories</segtitle>
210
211 <seglistitem>
212 <seg>
213 tracker3
214 </seg>
215 <seg>
216 libtracker-sparql-3.0.so
217 </seg>
218 <seg>
219 /usr/{include,lib}/tracker-3.0,
220 /usr/libexec/tracker3,
221 /usr/share/tracker3, and
222 /usr/share/doc/Tracker-3.0 (optional)
223 <!-- Xi, when you change documentation, please change this path -->
224 </seg>
225 </seglistitem>
226 </segmentedlist>
227
228 <variablelist>
229 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
230 <?dbfo list-presentation="list"?>
231 <?dbhtml list-presentation="table"?>
232
233 <varlistentry id="tracker3-prog">
234 <term><command>tracker3</command></term>
235 <listitem>
236 <para>
237 is a control program for the indexer
238 </para>
239 <indexterm zone="tracker3 tracker3-prog">
240 <primary sortas="b-tracker3">tracker3</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 <varlistentry id="libtracker3-sparql">
246 <term><filename class="libraryfile">libtracker-sparql-3.0.so</filename></term>
247 <listitem>
248 <para>
249 contains resource management and database functions
250 </para>
251 <indexterm zone="tracker3 libtracker3-sparql">
252 <primary sortas="c-libtracker3-sparql">libtracker-sparql-3.0.so</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
256
257 </variablelist>
258
259 </sect2>
260
261</sect1>
Note: See TracBrowser for help on using the repository browser.