Date: Friday, May 14, 2021 @ 14:27:25 Author: arojas Revision: 415497
Backport fixes for kdenlive (FS#70857) Modified: mlt6/trunk/PKGBUILD ----------+ PKGBUILD | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-05-14 14:23:09 UTC (rev 415496) +++ PKGBUILD 2021-05-14 14:27:25 UTC (rev 415497) @@ -8,7 +8,7 @@ pkgname=mlt6 pkgver=6.26.1 -pkgrel=3 +pkgrel=4 pkgdesc="An open source multimedia framework" arch=(x86_64) url="https://www.mltframework.org" @@ -37,9 +37,19 @@ conflicts=(python-mlt) provides=(python-mlt) replaces=(python-mlt) -source=($pkgname-$pkgver.tar.gz::https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz) -sha256sums=('8a484bbbf51f33e25312757531f3ad2ce20607149d20fcfcb40a3c1e60b20b4e') +source=($pkgname-$pkgver.tar.gz::https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz + https://github.com/mltframework/mlt/commit/7063e88e.patch + https://github.com/mltframework/mlt/commit/a87229bc.patch) +sha256sums=('8a484bbbf51f33e25312757531f3ad2ce20607149d20fcfcb40a3c1e60b20b4e' + '8c2f537e46089ac165da12988aecf49e24d20ec33c1b88c6301f3d2640b8d8f3' + 'fc08a5cefb9e164966d5a6514196866dc96bb33719b5b7c069e0b8910e8f8fa5') +prepare() { +# Backport fixes for kdenlive crashes + patch -d mlt-$pkgver -p1 < 7063e88e.patch + patch -d mlt-$pkgver -p1 < a87229bc.patch +} + build() { cmake -B build -S mlt-$pkgver \ -DCMAKE_INSTALL_PREFIX=/usr \
