source: multimedia/libdriv/flac.xml@ 1c65bfd

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 1c65bfd was 1c65bfd, checked in by Guy Dalziel <gdalziel@…>, 15 years ago

LFS-6.5 checks and fixed broken Valgrind links.

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

  • Property mode set to 100644
File size: 6.4 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 flac-download-http "&sourceforge-repo;/flac/flac-&flac-version;.tar.gz">
8 <!ENTITY flac-download-ftp " ">
9 <!ENTITY flac-md5sum "153c8b15a54da428d1f0fadc756c22c7">
10 <!ENTITY flac-size "1.9 MB">
11 <!ENTITY flac-buildsize "205 MB (includes running the test suite)">
12 <!ENTITY flac-time "0.6 SBU (additional 8 SBU to run the test suite)">
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 &lfs65_checked; <!-- compiled with NASM 2.07 -->
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&flac-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&flac-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &flac-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &flac-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &flac-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &flac-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing="compact">
62 <listitem>
63 <para>Required patch: <ulink
64 url="&patch-root;/flac-&flac-version;-gcc43-1.patch"/></para>
65 </listitem>
66 </itemizedlist>
67
68 <bridgehead renderas="sect3">FLAC Dependencies</bridgehead>
69
70 <bridgehead renderas="sect4">Optional</bridgehead>
71 <para role="optional"><xref linkend="libogg"/>,
72 <xref linkend="xmms"/>,
73 <xref linkend="NASM"/>,
74 <xref linkend="docbook-utils"/>,
75 <xref linkend="doxygen"/> and
76 <ulink url="http://valgrind.org/">Valgrind</ulink></para>
77
78 <para condition="html" role="usernotes">User Notes:
79 <ulink url="&blfs-wiki;/flac"/></para>
80
81 </sect2>
82
83 <sect2 role="installation">
84 <title>Installation of FLAC</title>
85
86 <para>Install <application>FLAC</application> by running the
87 following commands:</para>
88
89<screen><userinput>patch -Np1 -i ../flac-&flac-version;-gcc43-1.patch &amp;&amp;
90./configure --prefix=/usr --disable-thorough-tests &amp;&amp;
91make</userinput></screen>
92
93 <para>To test the results, issue: <command>make check</command>. Note that
94 if you passed the <option>--enable-exhaustive-tests</option> and
95 <option>--enable-valgrind-testing</option> parameters to
96 <command>configure</command> and then run the test suite, it will take a
97 <emphasis>very</emphasis> long time (up to 300 SBUs) and use about 375 MB
98 of disk space.</para>
99
100 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
101
102<screen role="root"><userinput>make install</userinput></screen>
103
104 </sect2>
105
106 <sect2 role="commands">
107 <title>Command Explanations</title>
108
109 <para><parameter>--disable-thorough-tests</parameter>: This parameter is
110 used so that the test suite will complete in a reasonable amount of time.
111 Remove it if you desire more extensive tests.</para>
112
113 <para><option>--enable-sse</option>: This option is off by default and
114 should be set on if your machine has SSE capability. One way to find out if
115 you have SSE is to issue <command>cat /proc/cpuinfo</command> and see if
116 <computeroutput>sse</computeroutput> is listed in the flags.</para>
117
118 <para><option>--disable-static</option>: This switch prevents the
119 static libraries from being built.</para>
120
121 </sect2>
122
123 <sect2 role="content">
124 <title>Contents</title>
125
126 <segmentedlist>
127 <segtitle>Installed Programs</segtitle>
128 <segtitle>Installed Libraries</segtitle>
129 <segtitle>Installed Directories</segtitle>
130
131 <seglistitem>
132 <seg>flac and metaflac</seg>
133 <seg>libFLAC.{so,a}, libFLAC++.{so,a} and libxmms-flac.{so,a}</seg>
134 <seg>/usr/include/FLAC, /usr/include/FLAC++ and
135 /usr/share/doc/flac-&flac-version;</seg>
136 </seglistitem>
137 </segmentedlist>
138
139 <variablelist>
140 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
141 <?dbfo list-presentation="list"?>
142 <?dbhtml list-presentation="table"?>
143
144 <varlistentry id="flac-prog">
145 <term><command>flac</command></term>
146 <listitem>
147 <para>is a command-line utility for encoding, decoding and
148 converting FLAC files.</para>
149 <indexterm zone="flac flac-prog">
150 <primary sortas="b-flac">flac</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry id="metaflac">
156 <term><command>metaflac</command></term>
157 <listitem>
158 <para>is a program for listing, adding, removing, or editing
159 metadata in one or more FLAC files.</para>
160 <indexterm zone="flac metaflac">
161 <primary sortas="b-metaflac">metaflac</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry id="libflac">
167 <term><filename class='libraryfile'>libFLAC{,++}.{so,a}</filename></term>
168 <listitem>
169 <para>these libraries provide native FLAC and Ogg FLAC C/C++ APIs
170 for programs utilizing FLAC.</para>
171 <indexterm zone="flac libflac">
172 <primary sortas="c-libFLAC">lib{,Ogg}FLAC{,++}.{so,a}</primary>
173 </indexterm>
174 </listitem>
175 </varlistentry>
176
177 <varlistentry id="libxmms-flac">
178 <term><filename class='libraryfile'>libxmms-flac.{so,a}</filename></term>
179 <listitem>
180 <para>is a plugin for <application>XMMS</application>.</para>
181 <indexterm zone="flac libxmms-flac">
182 <primary sortas="c-libxmms-flac">libxmms-flac.{so,a}</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 </variablelist>
188
189 </sect2>
190
191</sect1>
Note: See TracBrowser for help on using the repository browser.