diff options
author | Danie <[email protected]> | 2023-11-24 22:46:50 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-24 15:46:50 -0500 |
commit | 9cd02fc480b017383cf564befe224c7127bf9a54 (patch) | |
tree | 78ba93963a24b73a84b4fc4b80071925ce924e1f | |
parent | 2d6944dc1481003b4e02e656b2d7a2d4d6db58c6 (diff) |
Update PKGBUILD to fix breakage due to wlroots0.17 (#237)
-rw-r--r-- | build-scripts/aur-git/PKGBUILD | 4 | ||||
-rw-r--r-- | build-scripts/aur/PKGBUILD | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build-scripts/aur-git/PKGBUILD b/build-scripts/aur-git/PKGBUILD index aefcbd83..116f839b 100644 --- a/build-scripts/aur-git/PKGBUILD +++ b/build-scripts/aur-git/PKGBUILD @@ -19,13 +19,12 @@ depends=( "libjson-c.so" "libudev.so" "libwayland-server.so" - "libwlroots.so" + "libwlroots.so=11" "libxcb" "libxkbcommon.so" "pango" "pcre2" "ttf-font" - "wlroots<0.17" ) optdepends=( "alacritty: Terminal emulator used by the default config" @@ -58,6 +57,7 @@ pkgver() { } build() { + export PKG_CONFIG_PATH='/usr/lib/wlroots0.16/pkgconfig' arch-meson \ -Dwerror=false \ "$_pkgname" build diff --git a/build-scripts/aur/PKGBUILD b/build-scripts/aur/PKGBUILD index c4fe0e38..7eec95c1 100644 --- a/build-scripts/aur/PKGBUILD +++ b/build-scripts/aur/PKGBUILD @@ -19,13 +19,12 @@ depends=( "libjson-c.so" "libudev.so" "libwayland-server.so" - "libwlroots.so" + "libwlroots.so=11" "libxcb" "libxkbcommon.so" "pango" "pcre2" "ttf-font" - "wlroots<0.17" ) optdepends=( "alacritty: Terminal emulator used by the default config" @@ -53,6 +52,7 @@ options=(debug) install=sway.install build() { + export PKG_CONFIG_PATH='/usr/lib/wlroots0.16/pkgconfig' arch-meson \ -Dwerror=false \ "${_pkgname}-${pkgver}" build |