Package Details: wayle-git 0.1.0.r0.ga1a31cf-1

Git Clone URL: https://aur.archlinux.org/wayle-git.git (read-only, click to copy)
Package Base: wayle-git
Description: A configurable desktop shell for Wayland compositors
Upstream URL: https://github.com/wayle-rs/wayle
Licenses: MIT
Conflicts: wayle, wayle-bin
Provides: wayle
Submitter: jaskir
Maintainer: jaskir
Last Packager: jaskir
Votes: 0
Popularity: 0.000000
First Submitted: 2025-07-05 09:08 (UTC)
Last Updated: 2026-03-31 06:15 (UTC)

Dependencies (16)

Required by (0)

Sources (1)

Latest Comments

rmunn commented on 2026-03-06 23:41 (UTC)

Wayle recently moved libcava into a submodule, so now a git submodule update step is required to get the package to build properly. The following diff will fix the build:

diff --git a/PKGBUILD b/PKGBUILD
index 4374d8f..61f5a05 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,6 +22,7 @@ pkgver() {

 build() {
     cd "${_pkgname}"
+    git submodule update --init --recursive
     cargo build --release --locked
 }