source: gnome/platform/tracker3.xml@ f0cc1bd2

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 f0cc1bd2 was ec047148, checked in by Douglas R. Reno <renodr@…>, 4 years ago

Drop the python2 version of the pycryptodome module
Update to gsettings-desktop-schemas-3.38.0
Update to VTE-0.62.0
Update to yelp-xsl-3.38.0
Update to gnome-desktop-3.38.1
Update to cheese-3.38.0
Update to libpeas-1.28.0
Update to evolution-data-server-3.38.1
Update to dconf-0.38.0
Update to dconf-editor-3.38.0
Update to tracker-3.0.1
Update to tracker-miners-3.0.1
Modify tracker and tracker-miners to allow them to build on SysV systems.

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

  • Property mode set to 100644
File size: 6.1 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.0/tracker-&tracker3-version;.tar.xz">
9 <!ENTITY tracker3-download-ftp
10 "&gnome-download-ftp;/tracker/3.0/tracker-&tracker3-version;.tar.xz">
11 <!ENTITY tracker3-md5sum "173668f5d1a890a494d681457ac7029b">
12 <!ENTITY tracker3-size "1.4 MB">
13 <!ENTITY tracker3-buildsize "85 MB (with tests)">
14 <!ENTITY tracker3-time "0.4 SBU (with tests)">
15]>
16
17<sect1 id="tracker3" xreflabel="Tracker-&tracker3-version;">
18 <?dbhtml filename="tracker3.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>Tracker-&tracker3-version;</title>
26
27 <indexterm zone="tracker3">
28 <primary sortas="a-Tracker3">Tracker3</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to Tracker</title>
33
34 <para>
35 <application>Tracker</application> is the file indexing and search
36 provider used in the <application>GNOME</application> desktop environment.
37 </para>
38
39 &lfs10_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&tracker3-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&tracker3-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &tracker3-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &tracker3-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &tracker3-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &tracker3-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">Tracker Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="json-glib"/>,
80 <xref linkend="libseccomp"/>,
81 <xref linkend="libsoup"/>, and
82 <xref linkend="vala"/>
83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
87 <xref linkend="gobject-introspection"/>,
88 <xref linkend="icu"/>,
89 <xref linkend="NetworkManager"/>,
90 <xref linkend="sqlite"/>, and
91 <xref linkend="upower"/>
92 </para>
93
94 <bridgehead renderas="sect4">Optional</bridgehead>
95 <para role="optional">
96 <xref linkend="gtk-doc"/>,
97 <ulink url="https://github.com/scop/bash-completion/">bash-completion</ulink>, and
98 <ulink url="https://github.com/snowballstem/snowball/">libstemmer</ulink>
99 <!-- Python2 used to be a dependency until 2.2.1 -->
100 </para>
101
102 <para condition="html" role="usernotes">User Notes:
103 <ulink url="&blfs-wiki;/tracker3"/>
104 </para>
105 </sect2>
106
107 <sect2 role="installation">
108 <title>Installation of Tracker</title>
109
110 <para>
111 Install <application>Tracker</application> by running the following
112 commands:
113 </para>
114
115<screen revision="systemd"><userinput>mkdir build &amp;&amp;
116cd build &amp;&amp;
117
118meson --prefix=/usr -Ddocs=false .. &amp;&amp;
119ninja</userinput></screen>
120
121<screen revision="sysv"><userinput>mkdir build &amp;&amp;
122cd build &amp;&amp;
123
124meson --prefix=/usr -Ddocs=false -Dsystemd_user_services=false .. &amp;&amp;
125ninja</userinput></screen>
126
127 <para>
128 To test the results, issue: <command>ninja test</command>. The tests
129 should be run from a graphical session.
130 </para>
131
132 <para>
133 Now, as the <systemitem class="username">root</systemitem> user:
134 </para>
135
136<screen role="root"><userinput>ninja install</userinput></screen>
137
138 </sect2>
139
140
141 <sect2 role="commands">
142 <title>Command Explanations</title>
143
144 <para>
145 <parameter>-Ddocs=false</parameter>: This switch prevents the
146 build process from generating API documentation. Omit this switch if you
147 have <xref linkend="gtk-doc" role="nodep"/> installed and wish to
148 generate and install the API documentation.
149 </para>
150
151 <para revision="sysv">
152 <parameter>-Dsystemd_user_services=false</parameter>: This switch prevents
153 the build process from installing systemd user services since they are
154 useless on SysV systems.
155 </para>
156
157 </sect2>
158
159
160 <sect2 role="content">
161 <title>Contents</title>
162
163 <segmentedlist>
164 <segtitle>Installed Programs</segtitle>
165 <segtitle>Installed Library</segtitle>
166 <segtitle>Installed Directories</segtitle>
167
168 <seglistitem>
169 <seg>
170 tracker3
171 </seg>
172 <seg>
173 libtracker-sparql-3.0.so
174 </seg>
175 <seg>
176 /usr/{include,lib}/tracker-3.0, /usr/share/tracker3, and
177 /usr/share/gtk-doc/html/{libtracker-sparql,ontology}-3
178 </seg>
179 </seglistitem>
180 </segmentedlist>
181
182 <variablelist>
183 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
184 <?dbfo list-presentation="list"?>
185 <?dbhtml list-presentation="table"?>
186
187 <varlistentry id="tracker3-prog">
188 <term><command>tracker3</command></term>
189 <listitem>
190 <para>
191 is a control program for the indexer.
192 </para>
193 <indexterm zone="tracker3 tracker3-prog">
194 <primary sortas="b-tracker3">tracker3</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="libtracker3-sparql">
200 <term><filename class="libraryfile">libtracker-sparql-3.0.so</filename></term>
201 <listitem>
202 <para>
203 contains resource management and database functions.
204 </para>
205 <indexterm zone="tracker3 libtracker3-sparql">
206 <primary sortas="c-libtracker3-sparql">libtracker-sparql-3.0.so</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 </variablelist>
212
213 </sect2>
214
215</sect1>
Note: See TracBrowser for help on using the repository browser.