diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-06-27 10:35:53 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-06-27 10:35:53 +0200 |
commit | 3a7695dc8c4556693b54deaf40c1373757f30ac9 (patch) | |
tree | fe9591fc85d3e91a4a567e573634b9d5ecddd6a5 /community/obs-studio/PKGBUILD | |
parent | 496662bd20d70f8bcecd30735e3219f15d0892f9 (diff) | |
download | packages-3a7695dc8c4556693b54deaf40c1373757f30ac9.tar.xz |
community/obs-studio: patched a missing QAction header file
Diffstat (limited to 'community/obs-studio/PKGBUILD')
-rw-r--r-- | community/obs-studio/PKGBUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/community/obs-studio/PKGBUILD b/community/obs-studio/PKGBUILD new file mode 100644 index 00000000..67cc156f --- /dev/null +++ b/community/obs-studio/PKGBUILD @@ -0,0 +1,9 @@ +# harmless bug, missing an include for QAction, not seen where I could report this upstream, +# and I don't understand why this doesn't fail on 64-bit?! +source+=('obs-studio-21.1.1-missing-qaction.patch') +md5sums+=('7d0c4cd6e2c3a47595af3961d78f8a4e') + +prepare() { + cd $pkgname-$pkgver + patch -Np1 -i "$srcdir/obs-studio-21.1.1-missing-qaction.patch" +} |