Skip to content

Commit

Permalink
Merge pull request #5 from TKK13909/qt6
Browse files Browse the repository at this point in the history
Added installation instructions for distrobox, might need some edits
  • Loading branch information
Bali10050 authored Sep 16, 2024
2 parents ff30958 + 7969216 commit 623f40b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,38 @@ cd ../../
make -j 12
sudo make install
```
***


#### Distrobox (Fedora 40)
```
distrobox create --name lightly --image fedora-toolbox:40
distrobox enter lightly
```

```
sudo dnf install -y cmake extra-cmake-modules \
"cmake(Qt5Core)" "cmake(Qt5Gui)" "cmake(Qt5DBus)" "cmake(Qt5X11Extras)" \
"cmake(KF5GuiAddons)" "cmake(KF5WindowSystem)" "cmake(KF5I18n)" "cmake(KDecoration2)" \
"cmake(KF5CoreAddons)" "cmake(KF5ConfigWidgets)" "cmake(Qt5UiTools)" "cmake(KF5GlobalAccel)" \
"cmake(KF5IconThemes)" kwin-devel libepoxy-devel "cmake(KF5Init)" "cmake(KF5Crash)" \
"cmake(KF5KIO)" "cmake(KF5Notifications)" kf5-kpackage-devel kf6-kcolorscheme-devel \
kf6-kguiaddons-devel kf6-ki18n-devel kf6-kiconthemes-devel kf6-kirigami-devel \
kf6-frameworkintegration-devel kf6-kcmutils-devel kf5-kcmutils-devel \
kf5-frameworkintegration-devel
git clone --single-branch --depth=1 https://github.com/Bali10050/Lightly.git
cd Lightly
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=lib64 \
-DBUILD_TESTING=OFF ..
make -j $(nproc)
make install
```
Once installed, make sure to add `export QT_PLUGIN_PATH=$HOME/.local/lib64/plugins:$QT_PLUGIN_PATH` to your .bashrc, .zshrc, or wherever you set environment variables for your system.
</details>


Expand Down

0 comments on commit 623f40b

Please sign in to comment.