Warning, /libraries/polkit-qt-1/INSTALL is written in an unsupported language. File is not indexed.

0001 Polkit-qt's build system uses cmake.
0002 
0003 So to compile Polkit-qt first create a build 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 cmake then presents a configuration summary. At this point you may
0015 want to install missing dependencies (if you do, remove the CMakeCache.txt)
0016 and run cmake again.
0017 
0018 Finally build Polkit-qt:
0019 
0020   make
0021 
0022 And install it (in most cases root privileges are required):
0023 
0024   make install
0025 
0026 That's all :)