source: multimedia/libdriv/audiofile.xml@ 41d241e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.9 8.0 8.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 nosym 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 41d241e was 41d241e, checked in by Fernando de Oliveira <fernando@…>, 9 years ago
  • Update to ntp-4.2.8p4 - Security update.
  • graphviz-2.38.0 fails to build with ghostscript-9.18.
  • audiofile-0.3.6: tests DO pass with --disable-static.
  • Update to gnutls-3.4.6.
  • Update to nss-3.20.1.
  • Update to nspr-4.10.10.
  • libmpeg2-0.5.1: install only shared libraries.
  • libquicktime-1.2.4: rephase one paragrah about doxygen.
  • libcanberra-0.30: include some "Command Explanations and fix one directory.
  • Python-3.4.3: replace PYTHONDOCS by unversioned value, no need to remember to fix profile for user or glogal one.
  • ghostscript-9.16: fix instruction for symlink to docs, for eventual reinstal.
  • libogg-1.3.2: reformat.
  • FAAD2-2.7: reformat.
  • faac-1.28: reformat.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16560 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 audiofile-download-http "&gnome-download-http;/audiofile/0.3/audiofile-&audiofile-version;.tar.xz">
8 <!ENTITY audiofile-download-ftp "&gnome-download-ftp;/audiofile/0.3/audiofile-&audiofile-version;.tar.xz">
9 <!ENTITY audiofile-md5sum "235dde14742317328f0109e9866a8008">
10 <!ENTITY audiofile-size "520 KB">
11 <!ENTITY audiofile-buildsize "18 MB">
12 <!ENTITY audiofile-time "0.6 SBU">
13]>
14
15<sect1 id="audiofile" xreflabel="AudioFile-&audiofile-version;">
16 <?dbhtml filename="audiofile.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>AudioFile-&audiofile-version;</title>
24
25 <indexterm zone="audiofile">
26 <primary sortas="a-AudioFile">AudioFile</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to AudioFile</title>
31
32 <para>
33 The <application>AudioFile</application> package contains the
34 audio file libraries and two sound file support programs useful
35 to support basic sound file formats.
36 </para>
37
38 &lfs78_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&audiofile-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&audiofile-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &audiofile-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &audiofile-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &audiofile-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &audiofile-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">AudioFile Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="alsa-lib"/>
79 </para>
80
81 <bridgehead renderas="sect4">Recommended</bridgehead>
82 <para role="recommended">
83 <xref linkend="flac"/>
84 </para>
85
86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
88 <ulink url="http://www.methods.co.nz/asciidoc/">AsciiDoc</ulink> and
89 <xref linkend="valgrind"/>
90 </para>
91
92 <para condition="html" role="usernotes">User Notes:
93 <ulink url="&blfs-wiki;/audiofile"/>
94 </para>
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of AudioFile</title>
99
100 <para>
101 Install <application>AudioFile</application> by running the following
102 commands:
103 </para>
104
105<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
106
107make</userinput></screen>
108
109 <para>
110 Now, as the <systemitem class="username">root</systemitem> user:
111 </para>
112
113<screen role="root"><userinput>make install</userinput></screen>
114
115 <para>
116 To test the results, issue: <command>make check</command>.
117 Note that the tests will fail if the --disable-static
118 option is used and tests are executed before
119 <command>make install</command>. You have three options:
120 </para>
121
122 <para>
123 (a) configure without --disable-static, run the tests, but do not
124 install, then start a fresh build using --disable-static just for
125 installing the package.
126 </para>
127
128 <para>
129 (b) configure with --disable-static, but only run the tests after the
130 package is installed.
131 </para>
132
133 <para>
134 (b) configure with --disable-static, but only run the tests after a
135 DESTDIR install.
136 </para>
137
138 </sect2>
139
140 <sect2 role="commands">
141 <title>Command Explanations</title>
142
143 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
144 href="../../xincludes/static-libraries.xml"/>
145
146 </sect2>
147
148 <sect2 role="content">
149 <title>Contents</title>
150
151 <segmentedlist>
152 <segtitle>Installed Programs</segtitle>
153 <segtitle>Installed Libraries</segtitle>
154 <segtitle>Installed Directories</segtitle>
155
156 <seglistitem>
157 <seg>
158 sfconvert and sfinfo
159 </seg>
160 <seg>
161 libaudiofile.so
162 </seg>
163 <seg>
164 None
165 </seg>
166 </seglistitem>
167 </segmentedlist>
168
169 <variablelist>
170 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
171 <?dbfo list-presentation="list"?>
172 <?dbhtml list-presentation="table"?>
173
174 <varlistentry id="sfinfo">
175 <term><command>sfinfo</command></term>
176 <listitem>
177 <para>
178 displays the sound file format, audio encoding, sampling
179 rate and duration for audio formats supported by this library.
180 </para>
181 <indexterm zone="audiofile sfinfo">
182 <primary sortas="b-sfinfo">sfinfo</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="sfconvert">
188 <term><command>sfconvert</command></term>
189 <listitem>
190 <para>
191 converts sound file formats where the original format and
192 destination format are supported by this library.
193 </para>
194 <indexterm zone="audiofile sfconvert">
195 <primary sortas="b-sfconvert">sfconvert</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="libaudiofile">
201 <term><filename class="libraryfile">libaudiofile.so</filename></term>
202 <listitem>
203 <para>
204 contains functions used by programs to support AIFF,
205 AIFF-compressed, Sun/NeXT, WAV and BIC audio formats.
206 </para>
207 <indexterm zone="audiofile libaudiofile">
208 <primary sortas="c-libaudiofile">libaudiofile.so</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 </variablelist>
214
215 </sect2>
216
217</sect1>
Note: See TracBrowser for help on using the repository browser.