source: networking/netlibs/libpsl.xml@ d826282

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

network: Remove non-exist User Notes link

Part of User Notes removal by
https://www.linuxfromscratch.org/~xry111/remove-nonexist-usernote.sh

  • Property mode set to 100644
File size: 4.5 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 libpsl-download-http "https://github.com/rockdaboot/libpsl/releases/download/&libpsl-version;/libpsl-&libpsl-version;.tar.gz">
8 <!ENTITY libpsl-download-ftp " ">
9 <!ENTITY libpsl-md5sum "2864d3eb744b378d68f5c4da25603459">
10 <!ENTITY libpsl-size "7.2 MB">
11 <!ENTITY libpsl-buildsize "51 MB">
12 <!ENTITY libpsl-time "less than 0.1 SBU (including tests)">
13]>
14
15<sect1 id="libpsl" xreflabel="libpsl-&libpsl-version;">
16 <?dbhtml filename="libpsl.html"?>
17
18
19 <title>libpsl-&libpsl-version;</title>
20
21 <indexterm zone="libpsl">
22 <primary sortas="a-libpsl">libpsl</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to libpsl</title>
27
28 <para>
29 The <application>libpsl</application> package provides a library for
30 accessing and resolving information from the Public Suffix List (PSL). The PSL
31 is a set of domain names beyond the standard suffixes, such as .com.
32 </para>
33
34 &lfs113_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&libpsl-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&libpsl-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &libpsl-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &libpsl-size;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Estimated disk space required: &libpsl-buildsize;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated build time: &libpsl-time;
66 </para>
67 </listitem>
68 </itemizedlist>
69
70 <bridgehead renderas="sect3">libpsl Dependencies</bridgehead>
71
72 <bridgehead renderas="sect4">Required</bridgehead>
73 <para role="required">
74 <xref linkend="libidn2"/>
75 </para>
76
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
79 <xref linkend="gtk-doc"/> (for documentation) and
80 <xref linkend="valgrind"/> (for tests)
81 </para>
82
83 </sect2>
84
85 <sect2 role="installation">
86 <title>Installation of libpsl</title>
87
88 <para>
89 Install <application>libpsl</application> by running the following
90 commands:
91 </para>
92
93<screen><userinput>mkdir build &amp;&amp;
94cd build &amp;&amp;
95
96meson setup --prefix=/usr --buildtype=release &amp;&amp;
97
98ninja</userinput></screen>
99
100 <para>
101 To test the results, issue: <command>ninja test</command>.
102 </para>
103
104 <para>
105 Now, as the <systemitem class="username">root</systemitem> user:
106 </para>
107
108<screen role="root"><userinput>ninja install</userinput></screen>
109 </sect2>
110
111 <sect2 role="commands">
112 <title>Command Explanations</title>
113
114 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
115 href="../../xincludes/meson-buildtype-release.xml"/>
116
117 </sect2>
118 <sect2 role="content">
119 <title>Contents</title>
120
121 <segmentedlist>
122 <segtitle>Installed Program</segtitle>
123 <segtitle>Installed Library</segtitle>
124 <segtitle>Installed Directories</segtitle>
125
126 <seglistitem>
127 <seg>
128 psl
129 </seg>
130 <seg>
131 libpsl.so
132 </seg>
133 <seg>
134 None
135 </seg>
136 </seglistitem>
137 </segmentedlist>
138
139 <variablelist>
140 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
141 <?dbfo list-presentation="list"?>
142 <?dbhtml list-presentation="table"?>
143
144 <varlistentry id="psl">
145 <term><command>psl</command></term>
146 <listitem>
147 <para>
148 queries the Public Suffix List
149 </para>
150 <indexterm zone="libpsl psl">
151 <primary sortas="b-psl">psl</primary>
152 </indexterm>
153 </listitem>
154 </varlistentry>
155
156 <varlistentry id="libpsl-lib">
157 <term><filename class="libraryfile">libpsl.so</filename></term>
158 <listitem>
159 <para>
160 contains a library used to access the Public Suffix List
161 </para>
162 <indexterm zone="libpsl libpsl-lib">
163 <primary sortas="c-libpsl">libpsl.so</primary>
164 </indexterm>
165 </listitem>
166 </varlistentry>
167 </variablelist>
168 </sect2>
169
170</sect1>
Note: See TracBrowser for help on using the repository browser.