remove-dependencies #20

Merged
moritz merged 7 commits from remove-dependencies into master 2025-10-19 11:35:01 +00:00
Showing only changes of commit 9696c292cb - Show all commits

View File

@@ -14,16 +14,30 @@ ptprnt --font "NotoMono Nerd Font" --fontsize 32 --text "🖶 ptprnt v0.2.0 🥰
## Quick Start ## Quick Start
**Install dependencies:** ## Quick Start
**Binary dependencies**
Arch Linux: Arch Linux:
```bash ```bash
pacman -S libusb pango cairo meson pacman -S pango cairo libusb
``` ```
Debian/Ubuntu: Debian/Ubuntu:
```bash ```bash
apt-get install libusb-1.0-0-dev libpango1.0-dev libcairo2-dev meson apt install libpangocairo-1.0-0 libusb-1.0-0
```
**Build dependencies:**
Arch Linux:
```bash
pacman -S libusb spdlog pango cairo meson
```
Debian/Ubuntu:
```bash
apt install libusb-1.0-0-dev libspdlog-dev libfmt-dev libpango1.0-dev libcairo2-dev meson
``` ```
Note: spdlog is built as a subproject and statically linked, so it's not required as a system dependency. Note: spdlog is built as a subproject and statically linked, so it's not required as a system dependency.