source: lxqt/desktop/liblxqt.xml@ 50cb265e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 50cb265e was 50cb265e, checked in by Pierre Labastie <pieere@…>, 6 years ago

Make KF5 and plasma "nodep" in LXQt: this only impacts jhalfs users.
It prevents jhalfs from trying to build the whole kf5/plasma5 stack.

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

  • Property mode set to 100644
File size: 5.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<!-- As of August 2017, downloads.lxqt.org is down. Use github archives
8 instead, but keep the old link in case the host become available again.
9 According to lxqt devs, they are working on it...
10 <!ENTITY liblxqt-download-http "&lxqt-http-repo;/&lxqt-version;/liblxqt-&liblxqt-version;.tar.xz">-->
11 <!ENTITY liblxqt-download-http "https://github.com/lxde/liblxqt/releases/download/&liblxqt-version;/liblxqt-&liblxqt-version;.tar.xz">
12 <!ENTITY liblxqt-download-ftp " ">
13 <!ENTITY liblxqt-md5sum "65abc1f9dd25a4244e12f9126ea22397">
14 <!ENTITY liblxqt-size "50 KB">
15 <!ENTITY liblxqt-buildsize "5.0 MB">
16 <!ENTITY liblxqt-time "0.2 SBU">
17]>
18
19<sect1 id="liblxqt" xreflabel="liblxqt-&liblxqt-version;">
20 <?dbhtml filename="liblxqt.html"?>
21
22 <sect1info>
23 <othername>$LastChangedBy$</othername>
24 <date>$Date$</date>
25 </sect1info>
26
27 <title>liblxqt-&liblxqt-version;</title>
28
29 <indexterm zone="liblxqt">
30 <primary sortas="a-liblxqt">liblxqt</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to liblxqt</title>
35
36 <para>
37 The <application>liblxqt</application> is the core utility library for all
38 <application>LXQt</application> components.
39 </para>
40
41 &lfs81_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&liblxqt-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&liblxqt-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &liblxqt-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &liblxqt-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &liblxqt-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &liblxqt-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">liblxqt Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="libqtxdg"/> and
82 (<xref linkend="lxqt-kwindowsystem"/> or
83 <xref role="nodep" linkend="kf5-frameworks"/>)
84<!-- role="nodep" implies jhalfs users won't depend on the whole kf5
85 stack. If they have installed kf5, it is easy to remove the
86 lxqt-kwindowsystem script. -->
87 </para>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <xref linkend="git"/> (to download translation files) or
92 <xref linkend="lxqt-l10n"/> (to add localization files)
93 </para>
94
95 <para condition="html" role="usernotes">
96 User Notes: <ulink url="&blfs-wiki;/liblxqt"/>
97 </para>
98 </sect2>
99
100 <sect2 role="installation">
101 <title>Installation of liblxqt</title>
102
103 <para>
104 Install <application>liblxqt</application> by running the
105 following commands:
106 </para>
107
108<screen><userinput>mkdir -v build &amp;&amp;
109cd build &amp;&amp;
110
111cmake -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \
112 -DCMAKE_BUILD_TYPE=Release \
113 -DPULL_TRANSLATIONS=no \
114 .. &amp;&amp;
115make</userinput></screen>
116
117 <para>
118 This package does not come with a test suite.
119 </para>
120
121 <para>
122 Now, as the <systemitem class="username">root</systemitem> user:
123 </para>
124
125<screen role="root"><userinput>make install</userinput></screen>
126
127 </sect2>
128
129 <sect2 role="commands">
130 <title>Command Explanations</title>
131
132 <para>
133 <parameter>-DPULL_TRANSLATIONS=no</parameter>: Removes the need for
134 <xref linkend="git"/>, which would otherwise be requested to download
135 the translation files.
136 </para>
137
138 </sect2>
139
140 <sect2 role="content">
141 <title>Contents</title>
142
143 <segmentedlist>
144 <segtitle>Installed Programs</segtitle>
145 <segtitle>Installed Library</segtitle>
146 <segtitle>Installed Directories</segtitle>
147
148 <seglistitem>
149 <seg>
150 None
151 </seg>
152 <seg>
153 liblxqt.so
154 </seg>
155 <seg>
156 $LXQT_PREFIX/include/lxqt and $LXQT_PREFIX/share/cmake/lxqt
157 </seg>
158 </seglistitem>
159 </segmentedlist>
160
161 <variablelist>
162 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
163 <?dbfo list-presentation="list"?>
164 <?dbhtml list-presentation="table"?>
165
166 <varlistentry id="liblxqt-lib">
167 <term><filename class="libraryfile">liblxqt.so</filename></term>
168 <listitem>
169 <para>
170 contains the <application>liblxqt</application> API functions.
171 </para>
172 <indexterm zone="liblxqt liblxqt-lib">
173 <primary sortas="c-liblxqt">liblxqt.so</primary>
174 </indexterm>
175 </listitem>
176 </varlistentry>
177
178 </variablelist>
179
180 </sect2>
181
182</sect1>
Note: See TracBrowser for help on using the repository browser.