source: multimedia/libdriv/flac.xml@ 92dec691

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 92dec691 was 92dec691, checked in by Randy McMurchy <randy@…>, 18 years ago

Minor updates and fixes to various package instructions as suggested by David Jensen

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

  • Property mode set to 100644
File size: 6.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY flac-download-http "http://prdownloads.sourceforge.net/flac/flac-&flac-version;.tar.gz">
8 <!ENTITY flac-download-ftp " ">
9 <!ENTITY flac-md5sum "2bfc127cdda02834d0491ab531a20960">
10 <!ENTITY flac-size "1.5 MB">
11 <!ENTITY flac-buildsize "49 MB">
12 <!ENTITY flac-time "0.7 SBU">
13]>
14
15<sect1 id="flac" xreflabel="FLAC-&flac-version;">
16 <?dbhtml filename="flac.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>FLAC-&flac-version;</title>
24
25 <indexterm zone="flac">
26 <primary sortas="a-FLAC">FLAC</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to FLAC</title>
31
32 <para><application>FLAC</application> is an audio CODEC similar to
33 MP3, but lossless, meaning that audio is compressed without losing any
34 information.</para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&flac-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&flac-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &flac-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &flac-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &flac-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &flac-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
59 <itemizedlist spacing="compact">
60 <listitem>
61 <para>Required patch: <ulink
62 url="&patch-root;/flac-&flac-version;-xmms_plugin_fix-1.patch"/></para>
63 </listitem>
64 </itemizedlist>
65
66 <bridgehead renderas="sect3">FLAC Dependencies</bridgehead>
67
68 <bridgehead renderas="sect4">Optional</bridgehead>
69 <para role="optional"><xref linkend="libogg"/>,
70 <xref linkend="xmms"/>,
71 <xref linkend="NASM"/>,
72 <xref linkend="docbook-utils"/>,
73 <xref linkend="doxygen"/> and
74 <ulink url="http://valgrind.kde.org/">Valgrind</ulink></para>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/flac"/></para>
78
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of FLAC</title>
83
84 <para>Install <application>FLAC</application> by running the
85 following commands:</para>
86
87<screen><userinput>patch -Np1 -i ../flac-&flac-version;-xmms_plugin_fix-1.patch &amp;&amp;
88LIBS=-lm ./configure --prefix=/usr &amp;&amp;
89make</userinput></screen>
90
91 <para>If you have <application>Valgrind</application> version 3.0.0 or
92 higher installed and you plan on running the test suites after passing the
93 <option>--enable-valgrind-testing</option> parameter to
94 <command>configure</command>, you need to issue the following command to
95 change some test scripts:</para>
96
97<screen><userinput>sed -i -e "s/logfile-fd/log-fd/" `grep -lr logfile-fd test/*sh`</userinput></screen>
98
99 <para>To test the results, issue: <command>make check</command>. This
100 test suite will take quite a while. Note that if you passed the
101 <option>--enable-exhaustive-tests</option> and
102 <option>--enable-valgrind-testing</option> parameters to
103 <command>configure</command> and then run the test suite, it will take a
104 <emphasis>very</emphasis> long time (up to 300 SBUs) and use about 375 MB
105 of disk space.</para>
106
107 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
108
109<screen role="root"><userinput>make install</userinput></screen>
110
111 </sect2>
112
113 <sect2 role="commands">
114 <title>Command Explanations</title>
115
116 <para><command>LIBS=-lm ./configure --prefix=/usr</command>:
117 <filename class="libraryfile">libFLAC</filename> uses a function from the math
118 library but is not linked with <filename class="libraryfile">libm</filename>.
119 Passing the environment variable to <command>configure</command> satisfies
120 this dependency.</para>
121
122 <para><option>--enable-sse</option>: This option is off by default and
123 should be set on if your machine has SSE capability. One way to find out if
124 you have SSE is to issue <command>cat /proc/cpuinfo</command> and see if
125 <computeroutput>sse</computeroutput> is listed in the flags.</para>
126
127 </sect2>
128
129 <sect2 role="content">
130 <title>Contents</title>
131
132 <segmentedlist>
133 <segtitle>Installed Programs</segtitle>
134 <segtitle>Installed Libraries</segtitle>
135 <segtitle>Installed Directories</segtitle>
136
137 <seglistitem>
138 <seg>flac and metaflac</seg>
139 <seg>libFLAC.{so,a}, libFLAC++.{so,a}, libOggFLAC.{so,a},
140 libOggFLAC++.{so,a}, and libxmms-flac.{so,a}</seg>
141 <seg>/usr/share/doc/flac-&flac-version;</seg>
142 </seglistitem>
143 </segmentedlist>
144
145 <variablelist>
146 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
147 <?dbfo list-presentation="list"?>
148 <?dbhtml list-presentation="table"?>
149
150 <varlistentry id="flac-prog">
151 <term><command>flac</command></term>
152 <listitem>
153 <para>is a command-line utility for encoding, decoding and
154 converting FLAC files.</para>
155 <indexterm zone="flac flac-prog">
156 <primary sortas="b-flac">flac</primary>
157 </indexterm>
158 </listitem>
159 </varlistentry>
160
161 <varlistentry id="metaflac">
162 <term><command>metaflac</command></term>
163 <listitem>
164 <para>is a program for listing, adding, removing, or editing
165 metadata in one or more FLAC files.</para>
166 <indexterm zone="flac metaflac">
167 <primary sortas="b-metaflac">metaflac</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="libflac">
173 <term><filename class='libraryfile'>lib{,Ogg}FLAC{,++}.{so,a}</filename></term>
174 <listitem>
175 <para>these libraries provide native FLAC and Ogg FLAC C/C++ APIs
176 for programs utilizing FLAC.</para>
177 <indexterm zone="flac libflac">
178 <primary sortas="c-libFLAC">lib{,Ogg}FLAC{,++}.{so,a}</primary>
179 </indexterm>
180 </listitem>
181 </varlistentry>
182
183 <varlistentry id="libxmms-flac">
184 <term><filename class='libraryfile'>libxmms-flac.{so,a}</filename></term>
185 <listitem>
186 <para>is a plugin for <application>XMMS</application>.</para>
187 <indexterm zone="flac libxmms-flac">
188 <primary sortas="c-libxmms-flac">libxmms-flac.{so,a}</primary>
189 </indexterm>
190 </listitem>
191 </varlistentry>
192
193 </variablelist>
194
195 </sect2>
196
197</sect1>
Note: See TracBrowser for help on using the repository browser.