source: archive/simpleburn.xml@ ccded7e

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 ccded7e was b06ee8de, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Archive simpleburn
Tag wicd

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

  • Property mode set to 100644
File size: 7.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 simpleburn-download-http "http://simpleburn.tuxfamily.org/IMG/gz/simpleburn-&simpleburn-version;.tar.gz">
8 <!ENTITY simpleburn-download-ftp " ">
9 <!ENTITY simpleburn-md5sum "11cf5b9a69fda6c72b1ae1277fafa386">
10 <!ENTITY simpleburn-size "52 KB">
11 <!ENTITY simpleburn-buildsize "1.6 MB">
12 <!ENTITY simpleburn-time "less than 0.1 SBU">
13]>
14
15<sect1 id="simpleburn" xreflabel="SimpleBurn-&simpleburn-version;">
16 <?dbhtml filename="simpleburn.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>SimpleBurn-&simpleburn-version;</title>
24
25 <indexterm zone="simpleburn">
26 <primary sortas="a-SimpleBurn">SimpleBurn</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to SimpleBurn</title>
31
32 <para>
33 <application>SimpleBurn</application> is a minimalistic application for
34 burning and extracting CDs and DVDs.
35 </para>
36
37 &lfs7a_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&simpleburn-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&simpleburn-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &simpleburn-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &simpleburn-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &simpleburn-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &simpleburn-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">SimpleBurn Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="libcddb"/> and
78 <xref linkend="cmake"/> and
79 <xref linkend="gtk2"/>
80 </para>
81
82 <bridgehead renderas="sect4">Recommended</bridgehead>
83 <para role="recommended">
84 <xref linkend="libisoburn"/>,
85 <xref linkend="cdparanoia"/>, and
86 <xref linkend="cdrdao"/>
87 </para>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <xref linkend="libcdio"/> (to identify and play CDs),
92 <xref linkend="flac"/>,
93 <xref linkend="mpg123"/>,
94 <xref linkend="vorbistools"/>,
95 <xref linkend="lame"/>,
96 <xref linkend="mplayer"/>,
97 <ulink url="http://mpg321.sourceforge.net/">mpg321</ulink>,
98 <ulink url="http://normalize.nongnu.org/">normalize</ulink>,
99 <ulink url="http://sourceforge.net/projects/cdrtools/files/alpha/">cdrtools</ulink>, and
100 <ulink url="http://www.cdrkit.org/">cdrkit</ulink>
101 </para>
102
103 <para condition="html" role="usernotes">User Notes:
104 <ulink url="&blfs-wiki;/simpleburn"/>
105 </para>
106
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of SimpleBurn</title>
111
112 <para>
113 Install <application>SimpleBurn</application> by running the following
114 commands:
115 </para>
116
117<screen><userinput>sed -i -e 's|DESTINATION doc|DESTINATION share/doc|' CMakeLists.txt &amp;&amp;
118
119mkdir build &amp;&amp;
120cd build &amp;&amp;
121
122cmake -DCMAKE_BUILD_TYPE=Release \
123 -DCMAKE_INSTALL_PREFIX=/usr \
124 -DBURNING=LIBBURNIA .. &amp;&amp;
125make</userinput></screen>
126
127 <para>
128 This package does not come with a test suite.
129 </para>
130
131 <para>
132 Now, as the <systemitem class="username">root</systemitem> user:
133 </para>
134
135<screen role="root"><userinput>make install</userinput></screen>
136
137 <para>
138 All optical devices are not accessible for any user except <systemitem
139 class="username">root</systemitem> and members of the <systemitem
140 class="groupname">cdrom</systemitem> group. Add any users that might use
141 the optical devices to that group:
142 </para>
143
144<screen role="root"><userinput>usermod -a -G cdrom <replaceable>&lt;username&gt;</replaceable></userinput></screen>
145
146 </sect2>
147
148 <sect2 role="commands">
149 <title>Command Explanations</title>
150
151 <para>
152 <command>sed ...</command>: Ensure the documentation is installed
153 in /usr/share/doc.
154 </para>
155
156 <para>
157 <parameter>-DBURNING=LIBBURNIA</parameter>: This switch changes the
158 burning suite from the default cdrtools.
159 </para>
160
161 </sect2>
162
163 <sect2 role="content">
164 <title>Contents</title>
165
166 <segmentedlist>
167 <segtitle>Installed Programs</segtitle>
168 <segtitle>Installed Libraries</segtitle>
169 <segtitle>Installed Directories</segtitle>
170
171 <seglistitem>
172 <seg>
173 simpleburn,
174 simpleburn.sh
175 simpleburn-detect.sh,
176 simpleburn-gauges, and
177 simpleburn-gauges.sh
178 </seg>
179 <seg>
180 None
181 </seg>
182 <seg>
183 /usr/share/doc/simpleburn-&simpleburn-version; and
184 /usr/share/simpleburn
185 </seg>
186 </seglistitem>
187 </segmentedlist>
188
189 <variablelist>
190 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
191 <?dbfo list-presentation="list"?>
192 <?dbhtml list-presentation="table"?>
193
194 <varlistentry id="simpleburn-prog">
195 <term><command>simpleburn</command></term>
196 <listitem>
197 <para>
198 is the graphical program.
199 </para>
200 <indexterm zone="simpleburn simpleburn-prog">
201 <primary sortas="b-simpleburn">simpleburn</primary>
202 </indexterm>
203 </listitem>
204 </varlistentry>
205
206 <varlistentry id="simpleburn-gauges">
207 <term><command>simpleburn-gauges</command></term>
208 <listitem>
209 <para>
210 is a program used to display a gauge.
211 </para>
212 <indexterm zone="simpleburn simpleburn-gauges">
213 <primary sortas="b-simpleburn-gauges">simpleburn-gauges</primary>
214 </indexterm>
215 </listitem>
216 </varlistentry>
217
218 <varlistentry id="simpleburn-detect.sh">
219 <term><command>simpleburn-detect.sh</command></term>
220 <listitem>
221 <para>
222 is a script that detects a cdrom and optional outputs details
223 about the media.
224 </para>
225 <indexterm zone="simpleburn simpleburn-detect.sh">
226 <primary sortas="b-simpleburn-detect.sh">simpleburn-detect.sh</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="simpleburn-gauges.sh">
232 <term><command>simpleburn-gauges.sh</command></term>
233 <listitem>
234 <para>
235 is a suport script for other simpleburn scripts
236 </para>
237 <indexterm zone="simpleburn simpleburn-gauges.sh">
238 <primary sortas="b-simpleburn-gauges.sh">simpleburn-gauges.sh</primary>
239 </indexterm>
240 </listitem>
241 </varlistentry>
242
243 <varlistentry id="simpleburn.sh">
244 <term><command>simpleburn.sh</command></term>
245 <listitem>
246 <para>
247 is a script for command line based cdrom operations
248 </para>
249 <indexterm zone="simpleburn simpleburn.sh">
250 <primary sortas="b-simpleburn.sh">simpleburn.sh</primary>
251 </indexterm>
252 </listitem>
253 </varlistentry>
254
255 </variablelist>
256
257 </sect2>
258
259</sect1>
Note: See TracBrowser for help on using the repository browser.