blob: 05cd8829999fc0e73022ca3e4f644cf297bbee3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Ksshaskpass's build system uses CMake.
So to compile Ksshaskpass first create a build dir (cmake does not support
building in the source dir):
mkdir build
cd build
then run cmake:
cmake ..
(a typical cmake option that is often used is: -DCMAKE_INSTALL_PREFIX=<prefix>)
Finally build Ksshaskpass:
make
And install it (in most cases root privileges are required):
make install
(Text more or less copied from the Soprano build instructions.)
|