|
|
|
|
@ -1,14 +1,32 @@
|
|
|
|
|
# System Library
|
|
|
|
|
# Cutefish Framework
|
|
|
|
|
|
|
|
|
|
Cutefish Framework provides shared system APIs and backend integrations for
|
|
|
|
|
Cutefish desktop components and applications.
|
|
|
|
|
|
|
|
|
|
It provides common access to application metadata, networking, Bluetooth,
|
|
|
|
|
audio, display, appearance, accounts, media controls, and other desktop
|
|
|
|
|
services.
|
|
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
|
|
The framework uses Qt 6, KDE Frameworks 6, and a C++20 compiler.
|
|
|
|
|
|
|
|
|
|
### Debian/Ubuntu
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
sudo pacman -S gcc cmake qt5-base qt5-quickcontrols2 networkmanager-qt modemmanager-qt
|
|
|
|
|
sudo apt install cmake extra-cmake-modules pkg-config build-essential \
|
|
|
|
|
qt6-base-dev qt6-declarative-dev qt6-tools-dev qt6-tools-dev-tools \
|
|
|
|
|
libkscreen-dev libkf6networkmanagerqt-dev libkf6bluezqt-dev \
|
|
|
|
|
libkf6modemmanagerqt-dev libcanberra-dev libpulse-dev \
|
|
|
|
|
sound-theme-freedesktop
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Note that when using apt, the names of certain packages are different:
|
|
|
|
|
### Arch Linux
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
sudo apt install qtbase5-dev qtquickcontrols2-5-dev modemmanager-qt-dev libkf5networkmanagerqt-dev libkf5bluezqt-dev libkf5kio-dev cmake qtdeclarative5-dev libcanberra-dev libpulse-dev libcanberra-pulse extra-cmake-modules qttools5-dev qttools5-dev-tools
|
|
|
|
|
sudo pacman -S --needed base-devel cmake extra-cmake-modules pkgconf \
|
|
|
|
|
qt6-base qt6-declarative kscreen bluez-qt networkmanager-qt \
|
|
|
|
|
modemmanager-qt libcanberra libpulse sound-theme-freedesktop
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Build and Install
|
|
|
|
|
|