source: multimedia/libdriv/audiofile.xml@ c93c620c

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

Tags

  • Property mode set to 100644
File size: 6.0 KB
RevLine 
[ff7ee9c3]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[48b7295]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
[4a21942]6
[9bbd056]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">
[6d8f6dc]9 <!ENTITY audiofile-md5sum "235dde14742317328f0109e9866a8008">
10 <!ENTITY audiofile-size "520 KB">
11 <!ENTITY audiofile-buildsize "18 MB">
[f856738]12 <!ENTITY audiofile-time "0.6 SBU">
[48b7295]13]>
[4a21942]14
[9bbd056]15<sect1 id="audiofile" xreflabel="AudioFile-&audiofile-version;">
[ff7ee9c3]16 <?dbhtml filename="audiofile.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
[9bbd056]22 <title>AudioFile-&audiofile-version;</title>
[ff7ee9c3]23
24 <indexterm zone="audiofile">
[5b38e37]25 <primary sortas="a-AudioFile">AudioFile</primary>
[ff7ee9c3]26 </indexterm>
27
28 <sect2 role="package">
[5b38e37]29 <title>Introduction to AudioFile</title>
[ff7ee9c3]30
[9bbd056]31 <para>
[5b38e37]32 The <application>AudioFile</application> package contains the
[9bbd056]33 audio file libraries and two sound file support programs useful
34 to support basic sound file formats.
35 </para>
[ff7ee9c3]36
[c93c620c]37 &lfs110a_checked;
[cedf6b5]38
[ff7ee9c3]39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
[9bbd056]42 <para>
43 Download (HTTP): <ulink url="&audiofile-download-http;"/>
44 </para>
[ff7ee9c3]45 </listitem>
46 <listitem>
[9bbd056]47 <para>
48 Download (FTP): <ulink url="&audiofile-download-ftp;"/>
49 </para>
[ff7ee9c3]50 </listitem>
51 <listitem>
[9bbd056]52 <para>
53 Download MD5 sum: &audiofile-md5sum;
54 </para>
[ff7ee9c3]55 </listitem>
56 <listitem>
[9bbd056]57 <para>
58 Download size: &audiofile-size;
59 </para>
[ff7ee9c3]60 </listitem>
61 <listitem>
[9bbd056]62 <para>
63 Estimated disk space required: &audiofile-buildsize;
64 </para>
[ff7ee9c3]65 </listitem>
66 <listitem>
[9bbd056]67 <para>
68 Estimated build time: &audiofile-time;
69 </para>
[ff7ee9c3]70 </listitem>
71 </itemizedlist>
72
[5b38e37]73 <bridgehead renderas="sect3">AudioFile Dependencies</bridgehead>
[f856738]74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="alsa-lib"/>
78 </para>
[9bbd056]79
[6d8f6dc]80 <bridgehead renderas="sect4">Recommended</bridgehead>
81 <para role="recommended">
82 <xref linkend="flac"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
[9faa23b6]87 <xref linkend="asciidoc"/> and
[f1607a4]88 <xref linkend="valgrind"/>
[6d8f6dc]89 </para>
90
[0e2aa08]91 <para condition="html" role="usernotes">User Notes:
[5b38e37]92 <ulink url="&blfs-wiki;/audiofile"/>
93 </para>
[ff7ee9c3]94 </sect2>
95
96 <sect2 role="installation">
[5b38e37]97 <title>Installation of AudioFile</title>
[ff7ee9c3]98
[9bbd056]99 <para>
[5b38e37]100 Install <application>AudioFile</application> by running the following
[9bbd056]101 commands:
102 </para>
[ff7ee9c3]103
[f4302700]104<screen><userinput>CXXFLAGS="${CXXFLAGS:--O2 -g} -std=c++98" \
[998a0e0]105./configure --prefix=/usr --disable-static &amp;&amp;
[41d241e]106
[9bbd056]107make</userinput></screen>
[ff7ee9c3]108
[9bbd056]109 <para>
[41d241e]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>.
[2bf43964]117 Note that the tests will fail if the --disable-static
[41d241e]118 option is used and tests are executed before
119 <command>make install</command>. You have three options:
[9bbd056]120 </para>
[06d301f]121
[9bbd056]122 <para>
[41d241e]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.
[9bbd056]126 </para>
[ff7ee9c3]127
[41d241e]128 <para>
129 (b) configure with --disable-static, but only run the tests after the
130 package is installed.
131 </para>
132
133 <para>
[5c33f429]134 (c) configure with --disable-static, but only run the tests after a
[41d241e]135 DESTDIR install.
136 </para>
[ff7ee9c3]137
138 </sect2>
139
[5b38e37]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
[ff7ee9c3]148 <sect2 role="content">
149 <title>Contents</title>
150
151 <segmentedlist>
152 <segtitle>Installed Programs</segtitle>
[9bbd056]153 <segtitle>Installed Libraries</segtitle>
[c3c56b2]154 <segtitle>Installed Directories</segtitle>
[ff7ee9c3]155
156 <seglistitem>
[9bbd056]157 <seg>
158 sfconvert and sfinfo
159 </seg>
160 <seg>
[5b38e37]161 libaudiofile.so
[9bbd056]162 </seg>
[c3c56b2]163 <seg>
164 None
165 </seg>
[ff7ee9c3]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>
[9bbd056]177 <para>
178 displays the sound file format, audio encoding, sampling
[4c24eb0a]179 rate and duration for audio formats supported by this library
[9bbd056]180 </para>
[ff7ee9c3]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>
[9bbd056]190 <para>
191 converts sound file formats where the original format and
[4c24eb0a]192 destination format are supported by this library
[9bbd056]193 </para>
[ff7ee9c3]194 <indexterm zone="audiofile sfconvert">
195 <primary sortas="b-sfconvert">sfconvert</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="libaudiofile">
[5b38e37]201 <term><filename class="libraryfile">libaudiofile.so</filename></term>
[ff7ee9c3]202 <listitem>
[9bbd056]203 <para>
204 contains functions used by programs to support AIFF,
[4c24eb0a]205 AIFF-compressed, Sun/NeXT, WAV and BIC audio formats
[9bbd056]206 </para>
[ff7ee9c3]207 <indexterm zone="audiofile libaudiofile">
[5b38e37]208 <primary sortas="c-libaudiofile">libaudiofile.so</primary>
[ff7ee9c3]209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 </variablelist>
214
215 </sect2>
[f45b1953]216
217</sect1>
Note: See TracBrowser for help on using the repository browser.