1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2025-06-16 07:07:27 +02:00

Add build instruction for Fedora

Fedora is nice.
This commit is contained in:
Krafting 2023-10-05 10:32:42 +02:00 committed by GitHub
parent 8013c00e1f
commit d9def1aeba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,11 +23,33 @@ Ubuntu
make
sudo make install
```
Note: default destination is /usr/local. This is configurable:
```
cmake ../fwbuilder -DCMAKE_INSTALL_PREFIX=/usr
```
Fedora
---------
*Tested on Fedora 38*
```
sudo dnf install openssl-devel qt5-qtbase-devel qt6-qtbase-devel automake git cmake libxml2-devel libxslt-devel
git clone https://github.com/fwbuilder/fwbuilder.git
mkdir build
cd build
cmake ../fwbuilder
make
sudo make install
```
Note: default destination is /usr/local. This is configurable:
```
cmake ../fwbuilder -DCMAKE_INSTALL_PREFIX=/usr
```
Create deb package
---------
```