source: pst/ps/mupdf.xml@ 1a424644

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 1a424644 was 1a424644, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Update to mupdf-1.15.0.
Update to usbutils-012.
Update to libdazzle-3.32.2.
Update to vte-0.56.3.
Update to cbindgen-0.8.6.

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

  • Property mode set to 100644
File size: 7.3 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<!--Using archive URL, because when a new version is released, older and new
8can be found there, no need to change directory -->
9 <!ENTITY mupdf-download-http "http://www.mupdf.com/downloads/archive/mupdf-&mupdf-version;-source.tar.gz">
10 <!ENTITY mupdf-download-ftp " ">
11 <!ENTITY mupdf-md5sum "e9f1d47108e4e9151666c56ecad47fc9">
12 <!ENTITY mupdf-size "51 MB">
13 <!ENTITY mupdf-buildsize "204 MB">
14 <!ENTITY mupdf-time "0.1 SBU (Using parallelism=4)">
15]>
16
17<sect1 id="mupdf" xreflabel="mupdf-&mupdf-version;">
18 <?dbhtml filename="mupdf.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>MuPDF-&mupdf-version;</title>
26
27 <indexterm zone="mupdf">
28 <primary sortas="a-mupdf">mupdf</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to MuPDF</title>
33
34 <para>
35 <application>MuPDF</application> is a lightweight PDF and XPS viewer.
36 </para>
37
38 &lfs84_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&mupdf-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&mupdf-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &mupdf-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &mupdf-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &mupdf-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &mupdf-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
75 <itemizedlist spacing="compact">
76 <listitem>
77 <para>
78 Recommended patch:
79 <ulink url="&patch-root;/mupdf-&mupdf-version;-shared_libs-1.patch"/>
80 </para>
81 </listitem>
82 </itemizedlist>
83
84 <bridgehead renderas="sect3">MuPDF Dependencies</bridgehead>
85
86 <bridgehead renderas="sect4">Required</bridgehead>
87 <para role="required">
88 <xref linkend="xorg7-lib"/>
89 </para>
90
91 <bridgehead renderas="sect4">Recommended</bridgehead>
92 <para role="recommended">
93 <xref linkend="freeglut"/>,
94 <xref linkend="harfbuzz"/>,
95 <!-- This no-longer gets linked in with our system libs patch
96 <xref linkend="lcms2"/>, -->
97 <xref linkend="libjpeg"/>,
98 <xref linkend="openjpeg2"/>, and
99 <xref linkend="curl"/>
100 </para>
101
102 <bridgehead renderas="sect4">Optional</bridgehead>
103 <para role="optional">
104 <xref role="runtime" linkend="xdg-utils"/> (runtime),
105 <ulink url="https://jbig2dec.com">jbig2dec</ulink>, and
106 <ulink url="https://artifex.com/mujs/">MuJS</ulink>
107 </para>
108
109 <bridgehead renderas="sect4">Required (runtime)</bridgehead>
110 <para role="required">
111 <xref role="runtime" linkend="x-window-system"/>
112 </para>
113
114 <para condition="html" role="usernotes">
115 User Notes: <ulink url="&blfs-wiki;/mupdf"/>
116 </para>
117 </sect2>
118
119 <sect2 role="installation">
120 <title>Installation of MuPDF</title>
121
122 <para>
123 Install <application>MuPDF</application> by running the following
124 commands:
125 </para>
126
127<screen><userinput>patch -Np1 -i ../mupdf-&mupdf-version;-shared_libs-1.patch &amp;&amp;
128
129USE_SYSTEM_LIBS=yes make</userinput></screen>
130
131 <para>
132 This package does not come with a test suite.
133 </para>
134
135 <para>
136 Now, as the <systemitem class="username">root</systemitem> user:
137 </para>
138
139<screen role="root"><userinput>USE_SYSTEM_LIBS=yes \
140make prefix=/usr \
141 build=release \
142 docdir=/usr/share/doc/mupdf-&mupdf-version; \
143 install &amp;&amp;
144
145ln -sfv mupdf-x11 /usr/bin/mupdf &amp;&amp;
146ldconfig</userinput></screen>
147
148 </sect2>
149
150 <sect2 role="commands">
151 <title>Command Explanations</title>
152
153 <para>
154 <command>ln -sfv mupdf-x11 /usr/bin/mupdf </command>:
155 This symbolic link chooses between <command>mupdf-gl</command>
156 and <command>mupdf-x11</command> when running <command>mupdf</command>.
157 </para>
158
159 </sect2>
160
161 <sect2 role="content">
162 <title>Contents</title>
163
164 <segmentedlist>
165 <segtitle>Installed Program</segtitle>
166 <segtitle>Installed Libraries</segtitle>
167 <segtitle>Installed Directories</segtitle>
168
169 <seglistitem>
170 <seg>mupdf(symlink),
171 mupdf-gl,
172 mupdf-x11, and
173 mutool
174 </seg>
175 <seg>libmupdf.so,
176 libmupdfthird.so,
177 libmupkcs7.so, and
178 libmuthreads.so
179 </seg>
180 <seg>/usr/include/mupdf,
181 /usr/share/doc/mupdf-&mupdf-version;
182 </seg>
183 </seglistitem>
184 </segmentedlist>
185
186 <variablelist>
187 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
188 <?dbfo list-presentation="list"?>
189 <?dbhtml list-presentation="table"?>
190
191 <varlistentry id="mupdf-prog">
192 <term><command>mupdf</command></term>
193 <listitem>
194 <para>
195 is a program for viewing PDF, XPS, EPUB, and CBZ documents,
196 and various image formats such as PNG, JPEG, GIFF, and TIFF.
197 </para>
198 <indexterm zone="mupdf mupdf-prog">
199 <primary sortas="b-mupdf">mupdf</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 <varlistentry id="mupdf-gl">
205 <term><command>mupdf-gl</command></term>
206 <listitem>
207 <para>
208 same as <command>mupdf</command>, using an opengl renderer.
209 </para>
210 <indexterm zone="mupdf mupdf-gl">
211 <primary sortas="b-mupdf-gl">mupdf-gl</primary>
212 </indexterm>
213 </listitem>
214 </varlistentry>
215
216 <varlistentry id="mupdf-x11">
217 <term><command>mupdf-x11</command></term>
218 <listitem>
219 <para>
220 same as <command>mupdf</command>, using an X Window renderer.
221 </para>
222 <indexterm zone="mupdf mupdf-x11">
223 <primary sortas="b-mupdf-x11">mupdf-x11</primary>
224 </indexterm>
225 </listitem>
226 </varlistentry>
227
228 <varlistentry id="libmupdf">
229 <term><filename class="libraryfile">libmupdf.so</filename></term>
230 <listitem>
231 <para>
232 contains the mupdf API functions.
233 </para>
234 <indexterm zone="mupdf libmupdf">
235 <primary sortas="c-libmupdf">libmupdf.so</primary>
236 </indexterm>
237 </listitem>
238 </varlistentry>
239
240 <varlistentry id="libmupdfthird">
241 <term><filename class="libraryfile">libmupdfthird.so</filename></term>
242 <listitem>
243 <para>
244 contains the third party libraries compiled for mudpf.
245 </para>
246 <indexterm zone="mupdf libmupdfthird">
247 <primary sortas="c-libmupdfthird">libmupdfthird.so</primary>
248 </indexterm>
249 </listitem>
250 </varlistentry>
251
252 </variablelist>
253
254 </sect2>
255
256</sect1>
Note: See TracBrowser for help on using the repository browser.