Difference between revisions of "CDParanoia-III"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) m |
|||
(One intermediate revision by one other user not shown) | |||
Line 8: | Line 8: | ||
{{Package-Introduction|The CDParanoia package contains a CD audio extraction tool. This is useful for extracting .wav files from audio CDs. A CDDA capable CDROM drive is needed. Practically all drives supported by Linux can be used.|http://www.xiph.org/paranoia/}} | {{Package-Introduction|The CDParanoia package contains a CD audio extraction tool. This is useful for extracting .wav files from audio CDs. A CDDA capable CDROM drive is needed. Practically all drives supported by Linux can be used.|http://www.xiph.org/paranoia/}} | ||
− | |||
− | |||
== Non-Multilib == | == Non-Multilib == | ||
Line 29: | Line 27: | ||
Compile the package: | Compile the package: | ||
− | CC=" | + | sed -i 's/$(CC) -fpic/& $(LDFLAGS)/' {interface,paranoia}/Makefile.in |
+ | CFLAGS="${BUILD32}" ./configure --prefix=/usr && | ||
make | make | ||
Line 41: | Line 40: | ||
Compile the package: | Compile the package: | ||
− | + | sed -i 's/$(CC) -fpic/& $(LDFLAGS)/' {interface,paranoia}/Makefile.in | |
+ | CFLAGS="${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
make | make | ||
Line 53: | Line 53: | ||
Compile the package: | Compile the package: | ||
− | CC=" | + | sed -i 's/$(CC) -fpic/& $(LDFLAGS)/' {interface,paranoia}/Makefile.in |
+ | CFLAGS="${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
make | make | ||
Latest revision as of 19:20, 1 November 2010
Introduction to CDParanoia-III
The CDParanoia package contains a CD audio extraction tool. This is useful for extracting .wav files from audio CDs. A CDDA capable CDROM drive is needed. Practically all drives supported by Linux can be used.
Project Homepage: http://www.xiph.org/paranoia/
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install && chmod -v 755 /usr/lib/libcdda_*.so.0.10.2
Multilib
32Bit
Compile the package:
sed -i 's/$(CC) -fpic/& $(LDFLAGS)/' {interface,paranoia}/Makefile.in CFLAGS="${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install && chmod -v 755 /usr/lib/libcdda_*.so.0.10.2
N32
Compile the package:
sed -i 's/$(CC) -fpic/& $(LDFLAGS)/' {interface,paranoia}/Makefile.in CFLAGS="${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install && chmod -v 755 /usr/lib32/libcdda_*.so.0.10.2
64Bit
Compile the package:
sed -i 's/$(CC) -fpic/& $(LDFLAGS)/' {interface,paranoia}/Makefile.in CFLAGS="${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install && chmod -v 755 /usr/lib64/libcdda_*.so.0.10.2
Download Source: | http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz |
---|