Libcdio: Difference between revisions
No edit summary |
No edit summary |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 7: | Line 7: | ||
---- | ---- | ||
{{ | {{Package-Introduction|The Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access. Applications wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM or of the specific details of various CD-image formats may benefit from using this library.|http://www.gnu.org/software/libcdio/}} | ||
== Dependencies == | == Dependencies == | ||
| Line 17: | Line 17: | ||
== Non-Multilib == | == Non-Multilib == | ||
If you're compiling support for [[CDParanoia-III]] then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed: | |||
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in | |||
Compile the package: | Compile the package: | ||
| Line 30: | Line 34: | ||
=== 32Bit === | === 32Bit === | ||
If you're compiling support for [[CDParanoia-III]] then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed: | |||
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in | |||
Compile the package: | Compile the package: | ||
| Line 43: | Line 51: | ||
=== N32 === | === N32 === | ||
If you're compiling support for [[CDParanoia-III]] then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed: | |||
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in | |||
Compile the package: | Compile the package: | ||
| Line 56: | Line 68: | ||
=== 64Bit === | === 64Bit === | ||
If you're compiling support for [[CDParanoia-III]] then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed: | |||
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in | |||
Compile the package: | Compile the package: | ||
| Line 67: | Line 83: | ||
make install | make install | ||
[[Category:Media Libraries]] | |||
Latest revision as of 15:26, 19 March 2009
| Download Source: | http://ftp.gnu.org/gnu/libcdio/libcdio-0.80.tar.gz |
|---|
Introduction to Libcdio
The Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access. Applications wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM or of the specific details of various CD-image formats may benefit from using this library.
Project Homepage: http://www.gnu.org/software/libcdio/
Dependencies
Optional
Non-Multilib
If you're compiling support for CDParanoia-III then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed:
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
If you're compiling support for CDParanoia-III then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed:
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make
Install the package
make install
N32
If you're compiling support for CDParanoia-III then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed:
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package
make install
64Bit
If you're compiling support for CDParanoia-III then execute the following command before running configure. This will cause the libcdio_paranoia pkg-config files to be installed:
sed -i "s/libudf.pc$/& \$(paranoiapcs)/" Makefile.in
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install