git » mlt.git » commit d9fddbe

mlt 7.24.0

author Urja (ARMLFS builder)
2024-06-19 07:30:57 UTC
committer Urja (ARMLFS builder)
2024-06-19 07:30:57 UTC
parent cea76b1730b2e61facea6ae795b6e2b95c5c1076

mlt 7.24.0

.gitignore +2 -0
PKGBUILD +13 -13

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a43258a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/src/
+/pkg/
diff --git a/PKGBUILD b/PKGBUILD
index 9811b9d..0d5a9cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,7 @@ pkgname=mlt
 pkgver=7.24.0
 pkgrel=1
 pkgdesc='An open source multimedia framework'
-arch=(x86_64)
+arch=(x86_64 'armv7h')
 url='https://www.mltframework.org'
 license=(LGPL-2.1-only)
 depends=(gcc-libs
@@ -22,7 +22,7 @@ optdepends=('ffmpeg: ffmpeg plugin'
             'frei0r-plugins: for additional effects'
             'gdk-pixbuf2: gdk plugin'
             'glib2: gdk plugin'
-            'jack: JACK sound output plugin'
+ #           'jack: JACK sound output plugin'
             'ladspa: LADSPA plugins'
             'libepoxy: opengl plugin'
             'libexif: auto rotate plugin'
@@ -32,12 +32,12 @@ optdepends=('ffmpeg: ffmpeg plugin'
             'libx11: SDL1 plugin'
             'libxml2: XML plugin'
             'movit: opengl plugin'
-            'opencv: openCV plugin'
+#            'opencv: openCV plugin'
             'qt5-base: QT5 plugins'
             'qt5-svg: Qt5 plugins'
-            'qt6-base: Qt6 plugin'
-            'qt6-5compat: Qt6 plugin'
-            'qt6-svg: Qt6 plugin'
+#            'qt6-base: Qt6 plugin'
+#            'qt6-5compat: Qt6 plugin'
+#            'qt6-svg: Qt6 plugin'
             'pango: gdk plugin'
             'python: python bindings'
             'rtaudio: rtaudio plugin'
@@ -55,18 +55,18 @@ makedepends=(cmake
              gdk-pixbuf2
              git
              imagemagick
-             jack
+#             jack
              ladspa
              libdv
              libexif
              libsamplerate
              movit
-             opencv
+#             opencv
              pango
              python
              qt5-svg
-             qt6-5compat
-             qt6-svg
+#             qt6-5compat
+#             qt6-svg
              rtaudio
              rubberband
              sox
@@ -88,10 +88,10 @@ prepare() {
 build() {
   cmake -B build -S $pkgname \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DMOD_OPENCV=ON \
+    -DMOD_OPENCV=OFF \
     -DMOD_GLAXNIMATE=ON \
-    -DMOD_GLAXNIMATE_QT6=ON \
-    -DMOD_QT6=ON \
+    -DMOD_GLAXNIMATE_QT6=OFF \
+    -DMOD_QT6=OFF \
     -DSWIG_PYTHON=ON
   cmake --build build
 }