wok-6.x diff mlt/receipt @ rev 21451

updated mlt and mlt-dev (6.4.1 -> 6.14.0)
author Hans-G?nter Theisgen
date Mon Apr 29 17:15:56 2019 +0100 (2019-04-29)
parents 6e8b1bcb30e2
children 3c5c8872d9c0
line diff
     1.1 --- a/mlt/receipt	Thu Jan 24 11:33:03 2019 +0100
     1.2 +++ b/mlt/receipt	Mon Apr 29 17:15:56 2019 +0100
     1.3 @@ -1,42 +1,46 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="mlt"
     1.7 -VERSION="6.4.1"
     1.8 +VERSION="6.14.0"
     1.9  CATEGORY="multimedia"
    1.10 +TAGS="multimedia"
    1.11  MAINTAINER="jozee@slitaz.org"
    1.12  LICENSE="LGPL2.1"
    1.13 -SHORT_DESC="An open source multimedia framework"
    1.14 -WEB_SITE="https://www.mltframework.org"
    1.15 +SHORT_DESC="An open source multimedia framework."
    1.16 +WEB_SITE="https://www.mltframework.org/"
    1.17 +
    1.18  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.19  WGET_URL="https://github.com/mltframework/mlt/archive/v$VERSION.tar.gz"
    1.20 -TAGS="multimedia"
    1.21  
    1.22 -DEPENDS="libsdl-image libsamplerate libdv qt4 sox libxml2 gtk+ ffmpeg \
    1.23 -frei0r-plugins"
    1.24 -BUILD_DEPENDS="libsdl-image-dev libsamplerate-dev libdv-dev Qt4-dev sox-dev \
    1.25 -libxml2-dev gtk+-dev ffmpeg-dev frei0r-plugins-dev mesa-dev alsa-lib-dev \
    1.26 -pulseaudio-dev"
    1.27 +DEPENDS="ffmpeg frei0r-plugins gtk+ libdv libsamplerate libsdl-image libxml2 \
    1.28 +	qt4 sox"
    1.29 +BUILD_DEPENDS="alsa-lib-dev ffmpeg-dev frei0r-plugins-dev gtk+-dev \
    1.30 +	libdv-dev libsamplerate-dev libsdl-image-dev libxml2-dev \
    1.31 +	mesa-dev pulseaudio-dev Qt4-dev sox-dev"
    1.32  
    1.33  # Rules to configure and make the package.
    1.34  
    1.35  compile_rules()
    1.36  {
    1.37 -	./configure --prefix=/usr \
    1.38 -			--enable-gpl \
    1.39 -			--disable-mmx \
    1.40 -			--qimage-libdir=/usr/lib/ \
    1.41 -			--qimage-includedir=/usr/include/Qt \
    1.42 -			--avformat-swscale &&
    1.43 -	make &&
    1.44 +	./configure					\
    1.45 +		--prefix=/usr				\
    1.46 +		--enable-gpl				\
    1.47 +		--disable-mmx				\
    1.48 +		--qimage-libdir=/usr/lib/		\
    1.49 +		--qimage-includedir=/usr/include/Qt	\
    1.50 +		--avformat-swscale &&
    1.51 +	make -j 1 &&
    1.52  	make install 
    1.53  }
    1.54  	
    1.55  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.56  genpkg_rules()
    1.57  {
    1.58 -	mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
    1.59 -	cp -a $install/usr/bin $fs/usr
    1.60 -	cp -a $install/usr/lib/*so* $fs/usr/lib/
    1.61 -	cp -a $install/usr/share/$PACKAGE $fs/usr/share
    1.62 -	cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
    1.63 +	mkdir -p $fs/usr/lib/$PACKAGE
    1.64 +	mkdir -p $fs/usr/share
    1.65 +
    1.66 +	cp -a $install/usr/bin			$fs/usr
    1.67 +	cp -a $install/usr/lib/*so*		$fs/usr/lib/
    1.68 +	cp -a $install/usr/share/$PACKAGE	$fs/usr/share
    1.69 +	cp -a $install/usr/lib/$PACKAGE/*so*	$fs/usr/lib/$PACKAGE
    1.70  }