The installation process is as simple as typing:

cd /path/to/KGRUBEditor's/extracted/folder.
mkdir build
cd build
cmake ..
make
sudo make install

KGRUBEditor installs by default in 2 different places: under "System Settings" (which is installed
with kdebase and thus has greater requirements) or alternatively in the menu, as a stand-alone
application (only kdebase-runtime required).

You may specify where KGRUBEditor should install using the following CMake variables/options:

ENABLE_KCM
ENABLE_APP

For example:

"cmake .. -DENABLE_KCM=off" <-- This would install KGRUBEditor only under the menu
or
"cmake .. -DENABLE_APP=off" <-- This would install KGRUBEditor only under System Settings

By default both these options are turned on. Disabling both options won't compile or install
KGRUBEditor (this doesn't make much sense, right?)

--------------------------------------------------------------------------------------------

Changes will take effect in your system as soon as you type the "sudo make install" command.
