https://github.com/com8/pulp-ui
Inofficial GTK4 UI for Pulp
https://github.com/com8/pulp-ui
Last synced: 7 months ago
JSON representation
Inofficial GTK4 UI for Pulp
- Host: GitHub
- URL: https://github.com/com8/pulp-ui
- Owner: COM8
- License: gpl-3.0
- Created: 2024-06-29T15:46:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-19T13:05:57.000Z (over 1 year ago)
- Last Synced: 2024-10-17T16:22:44.109Z (about 1 year ago)
- Language: C++
- Size: 91.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pulp UI
GTK4 Based UI for Stats all Around AP Sensing in Böblingen using a Raspberry Pi.
## Examples
TODO
## Building
### Requirements
#### Fedora
```
sudo dnf install gtkmm4.0-devel libadwaita-devel libcurl-devel g++ clang cmake git
sudo dnf install libsoup3-devel sqlite-devel ninja-build meson
```
### Building
```
git clone https://github.com/COM8/pulp-ui.git
cd pulp-ui
mkdir build
cd build
cmake ..
cmake --build .
```
## Flatpak
The pulp-ui can be built and installed using Flatpak.
### Requirements
#### Fedora
```
sudo dnf install flatpak flatpak-builder
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub org.gnome.Sdk/43 org.gnome.Platform/43
```
#### Debian/Ubuntu
```
sudo apt install flatpak flatpak-builder
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub org.gnome.Sdk/43 org.gnome.Platform/43
```
### Building
Add `--jobs=1` to the `flatpak-builder` command when building on a Raspberry Pi to prevent running out of RAM.
```
git clone https://github.com/COM8/pulp-ui.git
cd pulp-ui
flatpak-builder --force-clean flatpak_build_dir de.pulp_ui.cli.yml
```
### Installing
```
flatpak-builder --user --install --force-clean flatpak_build_dir de.pulp_ui.cli.yml
```
### Cross-Compiling
In case you would like to cross-compile for the Raspberry Pi (aarch64), this can be done as follows:
```
sudo dnf install qemu-system-arm qemu-user-static
sudo systemctl restart systemd-binfmt.service
flatpak install flathub org.gnome.Sdk/aarch64/43 org.gnome.Platform/aarch64/43
flatpak-builder --arch=aarch64 --repo=repo --force-clean flatpak_build_dir de.pulp_ui.cli.yml
flatpak build-bundle --arch=aarch64 ./repo/ de.pulp_ui.cli.flatpak de.pulp_ui.cli
# Copy the "repo" dir to the target system
flatpak --user remote-add --no-gpg-verify pulp-ui-repo repo
flatpak --user install pulp-ui-repo de.pulp_ui.cli
```
### Uninstalling
```
flatpak uninstall de.pulp_ui.cli
```
### Executing
```
flatpak run de.pulp_ui.cli
```