Changes between Version 1 and Version 2 of SV8Build


Ignore:
Timestamp:
02/24/09 05:05:04 (15 years ago)
Author:
shy
Comment:

grammar

Legend:

Unmodified
Added
Removed
Modified
  • SV8Build

    v1 v2  
    55 == Getting the sources ==
    66First, you need the sources. You can browse [source: musepack svn] for a complete view.[[BR]]
    7 libmpc needs libcuefile for reading .cue files to import chapters informations. This is the same libcuefile as in [http://developer.berlios.de/projects/cuetools cuetools], but we made it a standalone library for our use.[[BR]]
    8 Also libreplaygain is needed to build mpcgain application.[[BR]]
     7libmpc needs libcuefile for reading .cue files to import chapters information. This is the same libcuefile as in [http://developer.berlios.de/projects/cuetools cuetools], but we made it a standalone library for our use.[[BR]]
     8Also libreplaygain is needed to build the mpcgain application.[[BR]]
    99So, here we go :
    1010{{{
     
    2727$ cmake -G "Unix Makefiles"
    2828}}}
    29 If you want to build other projects files (ex : msvc), check the available generators on your system using the cmake help command (at the end of the output) :
     29If you want to build other project files (ex : msvc), check the available generators on your system using the cmake help command (at the end of the output) :
    3030{{{
    3131$ cmake --help
     
    5858}}}
    5959 === installing ===
    60 I fear make install doesn't install the include file heather.
     60I fear make install doesn't install the include file.
    6161
    6262 == libmpc ==
    6363 === compiling ===
    64 Cmake needs to know where to find the two libs above and their includes. It will probably guess right for most of them, but the following values needs to be known : CUEFILE_INCLUDE_DIR, CUEFILE_LIBRARY, REPLAY_GAIN_INCLUDE_DIR and REPLAY_GAIN_LIBRARY.[[BR]]
     64Cmake needs to know where to find the two libs above and their includes. It will probably guess correctly for most of them, but the following values need to be known : CUEFILE_INCLUDE_DIR, CUEFILE_LIBRARY, REPLAY_GAIN_INCLUDE_DIR and REPLAY_GAIN_LIBRARY.[[BR]]
    6565You can check this :
    6666{{{
     
    101101REPLAY_GAIN_LIBRARY:FILEPATH=REPLAY_GAIN_LIBRARY-NOTFOUND
    102102}}}
    103 As you can see REPLAY_GAIN_LIBRARY:FILEPATH was not found on my system. So we say it were to find it :
     103As you can see, REPLAY_GAIN_LIBRARY:FILEPATH was not found on my system. So we tell it where to find it :
    104104{{{
    105105$ cmake -DREPLAY_GAIN_LIBRARY:FILEPATH=/your/path/musepack/libreplaygain/src/libreplaygain.so
     
    109109$ make
    110110}}}
    111 All the built executables are found in there respective directories. Note that libmpcdec is not built as a shared library here. Use the autotools build system to build it as a shared library, or provide a patch to build it as static on the Windows platform and shared on others platforms.
     111All the built executables are found in their respective directories. Note that libmpcdec is not built as a shared library here. Use the autotools build system to build it as a shared library, or provide a patch to build it as static on the Windows platform and shared on other platforms.
    112112
    113113 === installing ===