git » mlt.git » commit 101d9d3

Fix loading audio files (FS#79667)

author Antonio Rojas
2023-09-12 12:07:07 UTC
committer Antonio Rojas
2023-09-12 12:07:07 UTC
parent 659dcb8f5c106c0dc457d280ecb7e17e80f8663c

Fix loading audio files (FS#79667)

PKGBUILD +4 -2

diff --git a/PKGBUILD b/PKGBUILD
index 4d81c07..b91865a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
 
 pkgname=mlt
 pkgver=7.18.0
-pkgrel=2
+pkgrel=3
 pkgdesc='An open source multimedia framework'
 arch=(x86_64)
 url='https://www.mltframework.org'
@@ -37,12 +37,14 @@ makedepends=(cmake ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpe
              jack libexif python swig movit eigen opencv rubberband gdk-pixbuf2 pango rtaudio imagemagick)
 source=(https://github.com/mltframework/mlt/releases/download/v$pkgver/mlt-$pkgver.tar.gz
         https://github.com/mltframework/mlt/commit/52c5bde6.patch
+        https://github.com/mltframework/mlt/commit/f7adc156.patch
         https://github.com/mltframework/mlt/commit/1d3669e6.patch
         https://github.com/mltframework/mlt/commit/2266e5c8.patch
         https://github.com/mltframework/mlt/commit/2df4fc8e.patch
         https://github.com/mltframework/mlt/commit/b4943c55.patch)
 sha256sums=('9c57da14fbf3cb9c23b867b36f038aac7978c159ba0e8d8ac90e31c66878d115'
             '2162fe44964ff6946403510e2388ef0cb3dce4f2837b187aa6e83f7906a345a6'
+            '574de79fa667cc0a46ed04374ad7438b8b926777b394a2cb0c26f8e40c5c9446'
             'a7f3d8da9126b0b34a3df3334c7f6b93218eef0ed86fbbc6ec058e8bd0075a19'
             '3d2aa691ca10aeeb637a931503b744e35743a13e01beab33e2e725f0987628d9'
             '8496448b49ecd5de12ce694db8064bfbd8adc5eaf7cd67d89487e5d69899d67a'
@@ -50,7 +52,7 @@ sha256sums=('9c57da14fbf3cb9c23b867b36f038aac7978c159ba0e8d8ac90e31c66878d115'
 
 prepare() {
 # Fix crashes
-  for _patch in 52c5bde6 1d3669e6 2266e5c8 2df4fc8e b4943c55; do
+  for _patch in 52c5bde6 f7adc156 1d3669e6 2266e5c8 2df4fc8e b4943c55; do
     patch -d $pkgname-$pkgver -p1 < $_patch.patch
   done
 }