Difference between revisions of "CDParanoia-III"
From CBLFS
Jump to navigationJump to search (Workaround for broken autoconf macro I don't know how to fix (multilib)) |
|||
Line 29: | Line 29: | ||
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 42: | ||
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 55: | ||
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 | ||
Revision as of 23:44, 7 January 2010
Contents
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/
Dependencies
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 |
---|