Como compilar o terminal do indicador? Falha com a mensagem “Um pacote obrigatório não foi encontrado”

2

Estou tentando compilar este pacote a partir do launchpad: link

Eu instalei o valac, já que o pacote tem algum código vala. E CMake, como há um CMakeList.txt Eu baixei o código do código com o bzr, e tentei compilar com o cmake:

biel@C3PO:~$ bzr branch lp:~tombeckmann/+junk/indicator-terminal
You have not informed bzr of your Launchpad ID, and you must do this to
write to Launchpad or access private data.  See "bzr help launchpad-login".
Branched 1 revision.                                                          
biel@C3PO:~$ cd indicator-terminal
biel@C3PO:~/indicator-terminal$ cmake CMakeLists.txt
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- checking for modules 'granite;indicator3-0.4;keybinder-3.0;vte-2.90'
--   package 'granite' not found
--   package 'indicator3-0.4' not found
--   package 'keybinder-3.0' not found
--   package 'vte-2.90' not found
CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:266 (message):
  A required package was not found
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:320 (_pkg_check_modules_internal)
  CMakeLists.txt:39 (pkg_check_modules)



-- Found Vala: /usr/bin/valac 
-- checking for a minimum Vala version of 0.16.1
--   found Vala, version 0.20.1
CMake Error at CMakeLists.txt:76 (install):
  install TARGETS given no LIBRARY DESTINATION for shared library target
  "indicator-terminal".


-- Configuring incomplete, errors occurred!

Estou usando o Ubuntu 12.04.

    
por gabrielsimoes 25.08.2013 / 02:14

1 resposta

5

Você deve instalar este pacote:

sudo apt-get install pkg-config libgranite-dev libindicator3-dev libkeybinder-3.0-dev libvte-2.90-dev

Esse é o nome exato do pacote no buildlog .

    
por Braiam 25.08.2013 / 05:59