summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-08-26 02:36:35 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-08-26 02:36:35 +0200
commit2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07 (patch)
tree28c9f93ea62372c472e2eac0cf2e1898d1a871c4 /INSTALL
downloadtdesshaskpass-2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07.tar.gz
tdesshaskpass-2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07.zip
Initial import of ksshaskpass 0.4.1.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL22
1 files changed, 22 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..05cd882
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,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.)