web-dev-qa-db-fra.com

Comment compiler le terminal indicateur? Échec du message "Un paquet requis n'a pas été trouvé"

J'essaie de compiler ce paquet depuis le tableau de bord: https://code.launchpad.net/~tombeckmann/+junk/indicator-terminal

J'ai installé valac, car le paquet contient du code vala. Et CMake, comme il y a un CMakeList.txt, j'ai téléchargé le code avec bzr, et essayé de compiler avec 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!

J'utilise Ubuntu 12.04.

2
gabrielsimoes

Vous devez installer ces packages:

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

Ce sont les noms exacts du paquet provenant de buildlog .

5
Braiam