1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Compiling and Installing Pentobi From the Sources
=================================================
Requirements
------------
Building Pentobi requires the following tools and libraries:
* C++ compiler with C++20 support
* [Qt libraries](https://www.qt.io/) (>=6.9)
* [CMake](https://cmake.org/) (>=3.22)
* [GNU gettext](https://www.gnu.org/software/gettext/) (>=0.19.6)
* [ITS Tool](http://itstool.org/)
* [LibRsvg](https://wiki.gnome.org/Projects/LibRsvg)
In Debian (Forky), they can be installed with the command
```
sudo apt install cmake g++ gettext itstool librsvg2-bin make \
qt6-declarative-dev qt6-tools-dev
```
Building
--------
Pentobi can be compiled from the source directory with the commands
```
cmake .
make
```
Installing
----------
Pentobi can be installed after compilation with the command
```
sudo make install
```
|