diff options
author | Erik Reider <[email protected]> | 2023-01-06 00:15:34 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-06 00:15:34 +0100 |
commit | 558c67378f38c16c00a24dd7ab94e9704d43c92b (patch) | |
tree | 6917621d81c6d18c794d8cea3754052c6e3eaf8d | |
parent | 94ebb45ee38dd1800194a218d21780f55413035a (diff) |
Fix non git PKGBUILD requiring wlroots 0.16 (#86)
* Require wlroots0.15
* Use pcre instead of pcre2
-rw-r--r-- | build-scripts/aur/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-scripts/aur/PKGBUILD b/build-scripts/aur/PKGBUILD index 32ab9635..bac0493e 100644 --- a/build-scripts/aur/PKGBUILD +++ b/build-scripts/aur/PKGBUILD @@ -23,9 +23,9 @@ depends=( "libxcb" "libxkbcommon.so" "pango" - "pcre2" + "pcre" "ttf-font" - "wlroots<0.17" + "wlroots0.15" ) optdepends=( "alacritty: Terminal emulator used by the default config" |