# HG changeset patch # User Hans-G?nter Theisgen # Date 1556554556 -3600 # Node ID 06fd77e6f1e7490e390f5677da67ed72fc1a47ea # Parent 082c7fcce5a962f92c660bf2c0e6080e5c19b378 updated mlt and mlt-dev (6.4.1 -> 6.14.0) diff -r 082c7fcce5a9 -r 06fd77e6f1e7 mlt-dev/receipt --- a/mlt-dev/receipt Mon Apr 29 16:45:09 2019 +0100 +++ b/mlt-dev/receipt Mon Apr 29 17:15:56 2019 +0100 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="mlt-dev" -VERSION="6.4.1" +VERSION="6.14.0" CATEGORY="development" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" -SHORT_DESC="mlt devel files" -WEB_SITE="https://www.mltframework.org" -WANTED="mlt" +SHORT_DESC="mlt development files" +WEB_SITE="https://www.mltframework.org/" DEPENDS="mlt pkg-config" +WANTED="mlt" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 082c7fcce5a9 -r 06fd77e6f1e7 mlt/receipt --- a/mlt/receipt Mon Apr 29 16:45:09 2019 +0100 +++ b/mlt/receipt Mon Apr 29 17:15:56 2019 +0100 @@ -1,42 +1,46 @@ # SliTaz package receipt. PACKAGE="mlt" -VERSION="6.4.1" +VERSION="6.14.0" CATEGORY="multimedia" +TAGS="multimedia" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" -SHORT_DESC="An open source multimedia framework" -WEB_SITE="https://www.mltframework.org" +SHORT_DESC="An open source multimedia framework." +WEB_SITE="https://www.mltframework.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/mltframework/mlt/archive/v$VERSION.tar.gz" -TAGS="multimedia" -DEPENDS="libsdl-image libsamplerate libdv qt4 sox libxml2 gtk+ ffmpeg \ -frei0r-plugins" -BUILD_DEPENDS="libsdl-image-dev libsamplerate-dev libdv-dev Qt4-dev sox-dev \ -libxml2-dev gtk+-dev ffmpeg-dev frei0r-plugins-dev mesa-dev alsa-lib-dev \ -pulseaudio-dev" +DEPENDS="ffmpeg frei0r-plugins gtk+ libdv libsamplerate libsdl-image libxml2 \ + qt4 sox" +BUILD_DEPENDS="alsa-lib-dev ffmpeg-dev frei0r-plugins-dev gtk+-dev \ + libdv-dev libsamplerate-dev libsdl-image-dev libxml2-dev \ + mesa-dev pulseaudio-dev Qt4-dev sox-dev" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr \ - --enable-gpl \ - --disable-mmx \ - --qimage-libdir=/usr/lib/ \ - --qimage-includedir=/usr/include/Qt \ - --avformat-swscale && - make && + ./configure \ + --prefix=/usr \ + --enable-gpl \ + --disable-mmx \ + --qimage-libdir=/usr/lib/ \ + --qimage-includedir=/usr/include/Qt \ + --avformat-swscale && + make -j 1 && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*so* $fs/usr/lib/ - cp -a $install/usr/share/$PACKAGE $fs/usr/share - cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE + mkdir -p $fs/usr/lib/$PACKAGE + mkdir -p $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*so* $fs/usr/lib/ + cp -a $install/usr/share/$PACKAGE $fs/usr/share + cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE }