I want to change something very simple in okular and may be I can do it myself by changing the source.
I have the source code from Github [ https://github.com/KDE/okular ]. It does not have a README and nowhere in the code I found anything about build procedure.
But here [ http://www.linuxfromscratch.org/blfs/view/svn/kde/okular5.html ] I found some commands to build it from source. These are the commands :-
mkdir build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF \
-Wno-dev .. &&
make
But when I ran these I got following :-
Any ideas what is the issue? How can I build okular?
Will be thankful for any help.