From ab6dc54e6af7253570d74d0f221d3cf4a1a11423 Mon Sep 17 00:00:00 2001 From: Ben <42512930+BenSYZ@users.noreply.github.com> Date: Sun, 26 Nov 2023 00:53:46 +0800 Subject: [PATCH] fix: aur build failed: sd-bus-provider set to auto (#240) > swayfx/meson.build:92:2: ERROR: Assert failed: sd-bus-provider must not be set to auto since auto_features != auto --- build-scripts/aur-git/PKGBUILD | 3 ++- build-scripts/aur/PKGBUILD | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build-scripts/aur-git/PKGBUILD b/build-scripts/aur-git/PKGBUILD index 116f839b..69631508 100644 --- a/build-scripts/aur-git/PKGBUILD +++ b/build-scripts/aur-git/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Erik Reider _pkgname=swayfx pkgname="$_pkgname-git" -pkgver=r6930.94ebb45e +pkgver=r7023.9cd02fc4 pkgrel=1 license=("MIT") pkgdesc="SwayFX: Sway, but with eye candy!" @@ -60,6 +60,7 @@ build() { export PKG_CONFIG_PATH='/usr/lib/wlroots0.16/pkgconfig' arch-meson \ -Dwerror=false \ + -Dsd-bus-provider=libsystemd \ "$_pkgname" build meson compile -C build } diff --git a/build-scripts/aur/PKGBUILD b/build-scripts/aur/PKGBUILD index 7eec95c1..ef6f8e2a 100644 --- a/build-scripts/aur/PKGBUILD +++ b/build-scripts/aur/PKGBUILD @@ -55,6 +55,7 @@ build() { export PKG_CONFIG_PATH='/usr/lib/wlroots0.16/pkgconfig' arch-meson \ -Dwerror=false \ + -Dsd-bus-provider=libsystemd \ "${_pkgname}-${pkgver}" build meson compile -C build }