Difference between revisions of "Cdrkit"

From CBLFS
Jump to navigationJump to search
(added dep)
Line 52: Line 52:
 
  make &&
 
  make &&
 
  make install
 
  make install
 +
 +
[[Category:CD/DVD Utilities]]

Revision as of 15:32, 19 March 2009

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.

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile and Install the package

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

Multilib

This package does not install any libraries so only one installation is needed.

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