kpmcore/INSTALL.md

39 lines
1.0 KiB
Markdown
Raw Normal View History

Building and installing KDE Partition Manager Core Library from source
=========================================================
1. Dependencies
util-linux 2.32: available at https://github.com/karelzak/util-linux
KDE Frameworks: The minimum required version is 5.0.
2. Configure
2017-12-18 20:45:17 +00:00
KPMcore is built with cmake. It is recommended to build out of tree:
After unpacking the source, create a separate build directory and run cmake there:
2019-01-06 19:16:21 +00:00
```
$ tar xf kpmcore-x.y.z.tar.xz
2017-12-18 20:45:17 +00:00
$ cd kpmcore-x.y.z
$ mkdir build
$ cd build
$ cmake ..
2019-01-06 19:16:21 +00:00
```
If all dependencies are met, cmake configures the build directory.
3. Build and install
Just run make and make install in the build directory. The default install path
2019-01-06 19:16:21 +00:00
is `/usr/local`, so installing will need write privileges there. You can
configure a different install path by passing
2019-01-06 19:16:21 +00:00
`-DCMAKE_INSTALL_PREFIX=<your_path>` to cmake when configuring. To change the
install path after configuring and building, run
2019-01-06 19:16:21 +00:00
```
$ ccmake .
2019-01-06 19:16:21 +00:00
```
2019-01-06 19:16:21 +00:00
in the build directory and modify `CMAKE_INSTALL_PREFIX` there.