Warning, /plasma/ksshaskpass/INSTALL is written in an unsupported language. File is not indexed.

0001 Ksshaskpass's build system uses CMake.
0002 So to compile Ksshaskpass first create a build dir (cmake does not support
0003 building in the source dir):
0004 
0005   mkdir build
0006   cd build
0007 
0008 then run cmake:
0009 
0010   cmake ..
0011 
0012 (a typical cmake option that is often used is: -DCMAKE_INSTALL_PREFIX=<prefix>)
0013 
0014 Finally build Ksshaskpass:
0015 
0016   make
0017 
0018 And install it (in most cases root privileges are required):
0019 
0020   make install
0021 
0022 (Text more or less copied from the Soprano build instructions.)