Difference between revisions of "Cdrkit"

From CBLFS
Jump to navigationJump to search
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://cdrkit.org/releases/Cdrkit-{{Cdrkit-Version}}.tar.gz
+
| http://cdrkit.org/releases/cdrkit-{{Cdrkit-Version}}.tar.gz
 
|-
 
|-
  

Revision as of 15:04, 8 January 2007

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