Cdrkit: Difference between revisions
From CBLFS
Jump to navigationJump to search
Bigdissaved (talk | contribs) added dep |
No edit summary |
||
| Line 52: | Line 52: | ||
make && | make && | ||
make install | make install | ||
[[Category:CD/DVD Utilities]] | |||
Revision as of 14: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