Cdrkit

From CBLFS
Revision as of 15:04, 8 January 2007 by Jim (talk | contribs)
Jump to navigationJump to search
Download Source: http://cdrkit.org/releases/Cdrkit-1.1.9.tar.gz

Introduction to Cdrkit

Cdrkit is the debian port of Cdrtools. The Cdrkit package contains CD recording utilities. These are useful for reading, creating or writing (burning) Compact Discs.

Dependencies

Non-Multilib

Compile and Install the package

cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SHARED_LIBRARY_PREFIX=lib &&
make &&
make install

Multilib

32Bit

Compile and Install the package

cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SHARED_LIBRARY_PREFIX=lib \
-DCMAKE_C_FLAGS="${BUILD32}" &&
make &&
make install

N32

Compile and Install the package

cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SHARED_LIBRARY_PREFIX=lib32 \
-DCMAKE_C_FLAGS="${BUILDN32}" &&
make &&
make install

64Bit

Compile and Install the package

cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SHARED_LIBRARY_PREFIX=lib64 \
-DCMAKE_C_FLAGS="${BUILD64}" &&
make &&
make install