diff options
author | Alisson Lauffer | 2023-06-09 00:06:25 -0300 |
---|---|---|
committer | Alisson Lauffer | 2023-06-09 00:06:25 -0300 |
commit | 95a32a2267124a2e0229acebba701b571ef2eca3 (patch) | |
tree | 69732a6fce98817ae07ccee4d684bb2cbf311199 /PKGBUILD | |
parent | 2fe782a079f2b450a5f9bf340e20518647537286 (diff) | |
download | aur-95a32a2267124a2e0229acebba701b571ef2eca3.tar.gz |
Add a crash fix for unstable gtk4
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -13,8 +13,16 @@ makedepends=(git meson rust blueprint-compiler appstream) provides=(paper-plane) conflicts=(paper-plane) -source=("git+$url.git") -sha256sums=('SKIP') +source=("git+$url.git" + "unstable-gtk-crash-fix.patch::$url/commit/dee19785c1e6a79b07f3984080f7ce18ccdfd74c.patch") +sha256sums=('SKIP' + '10f8b9d8956d1bf44e227d99e5f9b7562c488ac4e8ace22103e9718b1100f7e9') + +prepare() { + cd "$_pkgname" + + patch --forward --strip=1 --input="$srcdir/unstable-gtk-crash-fix.patch" +} pkgver() { cd "$_pkgname" |