movit: new package for mlt

This commit is contained in:
suvari
2026-04-11 19:41:50 +03:00
parent a10bb6dbcd
commit 09c5c1ecf1
8 changed files with 371443 additions and 371206 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure()
def build():
autotools.make()
#def check():
#autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README")
@@ -0,0 +1,34 @@
diff --unified --recursive --text --new-file movit-1.7.2.orig/Makefile.in movit-1.7.2/Makefile.in
--- movit-1.7.2.orig/Makefile.in 2026-04-04 19:03:57.520198269 +0200
+++ movit-1.7.2/Makefile.in 2026-04-04 19:04:17.539027159 +0200
@@ -21,13 +21,13 @@
CC=@CC@
CXX=@CXX@
-CXXFLAGS=-Wall @CXXFLAGS@ -fvisibility-inlines-hidden -I$(GTEST_DIR)/include @SDL2_CFLAGS@ @Eigen3_CFLAGS@ @epoxy_CFLAGS@ @FFTW3_CFLAGS@ @benchmark_CFLAGS@
+CXXFLAGS=-Wall @CXXFLAGS@ -fvisibility-inlines-hidden @SDL2_CFLAGS@ @Eigen3_CFLAGS@ @epoxy_CFLAGS@ @FFTW3_CFLAGS@ @benchmark_CFLAGS@
ifeq ($(with_benchmark),yes)
CXXFLAGS += -DHAVE_BENCHMARK
endif
LDFLAGS=@LDFLAGS@
LDLIBS=@epoxy_LIBS@ @FFTW3_LIBS@ -lpthread
-TEST_LDLIBS=@epoxy_LIBS@ @SDL2_LIBS@ @benchmark_LIBS@ -lpthread
+TEST_LDLIBS=@epoxy_LIBS@ @SDL2_LIBS@ @benchmark_LIBS@ -lgtest -lpthread
DEMO_LDLIBS=@SDL2_image_LIBS@ -lrt -lpthread @libpng_LIBS@ @FFTW3_LIBS@
SHELL=@SHELL@
LIBTOOL=@LIBTOOL@ --tag=CXX
@@ -100,12 +100,10 @@
# Google Test and other test library functions.
OWN_TEST_OBJS = gtest_sdl_main.o test_util.o
-TEST_OBJS = gtest-all.o $(OWN_TEST_OBJS)
+TEST_OBJS = $(OWN_TEST_OBJS)
-gtest-all.o: $(GTEST_DIR)/src/gtest-all.cc
- $(CXX) -MMD $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c $< -o $@
gtest_sdl_main.o: gtest_sdl_main.cpp
- $(CXX) -MMD $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c $< -o $@
+ $(CXX) -MMD $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
# Unit tests.
$(TESTS): %: %.o $(TEST_OBJS) libmovit.la
+69
View File
@@ -0,0 +1,69 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>movit</Name>
<Homepage>https://www.movit.org</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Packager>
<License>GPL-2.0-or-later</License>
<Icon>movit</Icon>
<Summary>The modern video toolkit</Summary>
<Description>High-performance, high-quality video filters for the GPU
</Description>
<Archive type="targz" sha1sum="82db2086d85931dda4d1ce363e61818e9945209f">https://movit.sesse.net/movit-1.7.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>eigen3</Dependency>
<Dependency>fftw3-devel</Dependency>
<Dependency>glibc-devel</Dependency>
<Dependency>gtest-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libsdl2-devel</Dependency>
<Dependency>libepoxy-devel</Dependency>
<Dependency>sdl2-image-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>movit-use-system-gtest.patch</Patch>
</Patches>
</Source>
<Package>
<Name>movit</Name>
<RuntimeDependencies>
<Dependency>fftw3</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libsdl2</Dependency>
<Dependency>libepoxy</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libmovit*</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>movit-devel</Name>
<RuntimeDependencies>
<Dependency>eigen3</Dependency>
<Dependency>fftw3-devel</Dependency>
<Dependency>libepoxy-devel</Dependency>
<Dependency release="current">movit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2026-04-11</Date>
<Version>1.7.2</Version>
<Comment>First Release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
</History>
</PISI>
+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>movit</Name>
<Summary xml:lang="tr">Modern video araç seti</Summary>
<Description xml:lang="tr">GPU için yüksek performanslı, yüksek kaliteli video filtreleri.</Description>
<Description xml:lang="fr">Filtres vidéo haute performance et de haute qualité pour le GPU</Description>
<Description xml:lang="es">Filtros de vídeo de alto rendimiento y alta calidad para la GPU</Description>
</Source>
</PISI>
+371305 -371204
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
41d119a53231f45c9e70bd1c3817092683a3245c
98a565d3cadefa9d4db0659f395b350f7c96e437
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
2e6ed0f19fd031993881ec63f4231b0f0480abad
8cffbb066ceff3ea4034b40071ba28ae78cae199