I am trying to build Akira on Ubuntu 18.0.4.2.
I checked the instruction at the Github site: https://github.com/akiraux/Akira#-compile, and installed all dependencies by using sudo apt install.
After I ran the instructed command: meson build --prefix=/usr -Dprofile=default, I saw the error output as following:
Dependency granite found: NO found '0.5' but need: '>= 5.2.0'
Found CMake: /usr/bin/cmake (3.10.2)
Dependency granite found: NO (tried cmake)
meson.build:17:0: ERROR: Invalid version of dependency, need 'granite' ['>= 5.2.0'] found '0.5'.
How do I resolve this situation to run meson successfully?
-devpackage provides header files, which are needed for building software that uses the library. Even if the library is already installed, without the header files one cannot build software that uses it. (Installing the-devpackage also installs the library as a dependency; specifically,libranite-devdeclares thelibgranite5package as a dependency.) – Eliah Kagan Nov 13 '19 at 21:52