milis/talimatname/genel/mlt/talimat

29 lines
810 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Açık kaynak multimedya çerçevesi
# URL: http://www.mltframework.org
# Packager: alihan-ozturk28@hotmail.com
# Depends on: ladspa frei0r-plugins libdv sdl-image libsamplerate sox ffmpeg vid-stab qt5 jack libexif swig movit eigen3
name=mlt
version=6.2.0
release=1
source=(https://github.com/mltframework/mlt/archive/v$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--avformat-swscale \
--enable-gpl --enable-gpl3 \
--qt-libdir=/usr/lib --qt-includedir=/usr/include/qt
make
make DESTDIR=$PKG install
# mlt python bindings
cd src/swig/python
./build
mkdir -p $PKG/usr/lib/python2.7/
install -m755 mlt.py $PKG/usr/lib/python2.7/
install -m755 _mlt.so $PKG/usr/lib/python2.7/
install -m755 mlt_wrap.o $PKG/usr/lib/python2.7/
}