Housekeeping - documentation update.

Introduced a new dependency checking script that validates required apt packages before building the project

Documented the expanded package list and instructions for running the script within the build prerequisites documentation

Updated build system instructions to call the dependency checker prior to configuring with CMake
This commit is contained in:
Extremesecrecy
2025-07-24 08:20:24 -07:00
parent 1e9cd5eb13
commit 12ecf3c209
4 changed files with 60 additions and 6 deletions
+10 -2
View File
@@ -21,13 +21,21 @@ Run the following commands to install dependent libraries required by the PiPeda
sudo apt update
sudo apt upgrade
sudo apt install -y liblilv-dev libboost-dev \
libsystemd-dev catch libasound2-dev uuid-dev \
authbind libavahi-client-dev libnm-dev libicu-dev \
libsdbus-c++-dev libzip-dev google-perftools \
libgoogle-perftools-dev \
libpipewire-0.3-dev
libpipewire-0.3-dev libwebsocketpp-dev libsdl2-dev
After installing these packages, run the dependency checker to verify that
everything required is present:
```bash
cd ~/src/pipedal
./scripts/check_deps.sh
```
### Installing Sources