diff options
author | Michele Calgaro <[email protected]> | 2021-10-30 12:06:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-10-30 12:06:43 +0900 |
commit | 28de2ff84f59ac0b173670aa9c5331bc77c1e63f (patch) | |
tree | 43dcf0f461ee5552100b648e38979982c971597d /INSTALL | |
download | polkit-tqt-28de2ff84f59ac0b173670aa9c5331bc77c1e63f.tar.gz polkit-tqt-28de2ff84f59ac0b173670aa9c5331bc77c1e63f.zip |
Initial import from polkit-qt-1 debian snapshot archive.
https://snapshot.debian.org/package/polkit-qt-1/0.103.0-1/
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL new file mode 100644 index 000000000..dc5890022 --- /dev/null +++ b/INSTALL @@ -0,0 +1,26 @@ +Polkit-qt's build system uses cmake. + +So to compile Polkit-qt first create a build dir + + mkdir build + cd build + +then run cmake: + + cmake .. + +(a typical cmake option that is often used is: -DCMAKE_INSTALL_PREFIX=<prefix>) + +cmake then presents a configuration summary. At this point you may +want to install missing dependancies (if you do, remove the CMakeCache.txt) +and run cmake again. + +Finally build Polkit-qt: + + make + +And install it (in most cases root privileges are required): + + make install + +That's all :) |