-
Notifications
You must be signed in to change notification settings - Fork 31
Raspberry Pi
Ilia Bozhinov edited this page Oct 25, 2023
·
2 revisions
There is an error on the Raspberry Pi Bookworm build of wayfire so that there is no wayfire.pc
file at /usr/share/pkgconfig/
this means wayfire-plugins extra cannot be built. To fix this,
add the .pc
file to the PKG_CONFIG_PATH
:
export PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig/:$PKG_CONFIG_PATH
and install libwlroots-dev
and libwf-config-dev
sudo apt install libwlroots-dev libwf-config-dev
before continuing with the build normally.
git clone https://github.com/WayfireWM/wayfire-plugins-extra && cd wayfire-plugins-extra
meson build --prefix=/usr --buildtype=release
ninja -C build && sudo ninja -C build install