Собрался написать ебилд для этого: http://kde-look.org/content/show.php/MovieThumbs?content=157543
Но не могу разобраться, там сборка и установка идёт в несколько этапов:
First install the core moviethumbs lib and then build the kde and/or tools package
Install MOVIETHUMBS CORE
================================
Make a build location
mkdir build && cd build
Use CMake to check all dependancies
cmake -DCMAKE_BUILD_TYPE=Release <path to core dir>
Or use debugfull for testing
cmake -DCMAKE_BUILD_TYPE=Debugfull <path to core dir>
Build
make
Install with root
sudo make install
Install MOVIETHUMBS KDE (optional)
================================
Make a build location
mkdir build && cd build
Use CMake to check all dependancies
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release <path to core dir>
Build
make
Install with root
sudo make install
Install MOVIETHUMBS TOOLS (optional)
================================
Make a build location
mkdir build && cd build
Use CMake to check all dependancies
cmake -DCMAKE_BUILD_TYPE=Release <path to core dir>
Build
make
Install with root
sudo make install
Возникло несколько вопросов:
1) Как задать вот этот <path to core dir>?
2) Как разделить этапы, чтобо сначала собиралось ядро, потом всё остальное?