wok 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 082c7fcce5a9
children 6e3950f36462
files mlt-dev/receipt mlt/receipt
line diff
     1.1 --- a/mlt-dev/receipt	Mon Apr 29 16:45:09 2019 +0100
     1.2 +++ b/mlt-dev/receipt	Mon Apr 29 17:15:56 2019 +0100
     1.3 @@ -1,20 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="mlt-dev"
     1.7 -VERSION="6.4.1"
     1.8 +VERSION="6.14.0"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  LICENSE="LGPL2.1"
    1.12 -SHORT_DESC="mlt devel files"
    1.13 -WEB_SITE="https://www.mltframework.org"
    1.14 -WANTED="mlt"
    1.15 +SHORT_DESC="mlt development files"
    1.16 +WEB_SITE="https://www.mltframework.org/"
    1.17  
    1.18  DEPENDS="mlt pkg-config"
    1.19 +WANTED="mlt"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 +
    1.28 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.29 +	cp -a $install/usr/include		$fs/usr
    1.30  }
     2.1 --- a/mlt/receipt	Mon Apr 29 16:45:09 2019 +0100
     2.2 +++ b/mlt/receipt	Mon Apr 29 17:15:56 2019 +0100
     2.3 @@ -1,42 +1,46 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="mlt"
     2.7 -VERSION="6.4.1"
     2.8 +VERSION="6.14.0"
     2.9  CATEGORY="multimedia"
    2.10 +TAGS="multimedia"
    2.11  MAINTAINER="jozee@slitaz.org"
    2.12  LICENSE="LGPL2.1"
    2.13 -SHORT_DESC="An open source multimedia framework"
    2.14 -WEB_SITE="https://www.mltframework.org"
    2.15 +SHORT_DESC="An open source multimedia framework."
    2.16 +WEB_SITE="https://www.mltframework.org/"
    2.17 +
    2.18  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.19  WGET_URL="https://github.com/mltframework/mlt/archive/v$VERSION.tar.gz"
    2.20 -TAGS="multimedia"
    2.21  
    2.22 -DEPENDS="libsdl-image libsamplerate libdv qt4 sox libxml2 gtk+ ffmpeg \
    2.23 -frei0r-plugins"
    2.24 -BUILD_DEPENDS="libsdl-image-dev libsamplerate-dev libdv-dev Qt4-dev sox-dev \
    2.25 -libxml2-dev gtk+-dev ffmpeg-dev frei0r-plugins-dev mesa-dev alsa-lib-dev \
    2.26 -pulseaudio-dev"
    2.27 +DEPENDS="ffmpeg frei0r-plugins gtk+ libdv libsamplerate libsdl-image libxml2 \
    2.28 +	qt4 sox"
    2.29 +BUILD_DEPENDS="alsa-lib-dev ffmpeg-dev frei0r-plugins-dev gtk+-dev \
    2.30 +	libdv-dev libsamplerate-dev libsdl-image-dev libxml2-dev \
    2.31 +	mesa-dev pulseaudio-dev Qt4-dev sox-dev"
    2.32  
    2.33  # Rules to configure and make the package.
    2.34  
    2.35  compile_rules()
    2.36  {
    2.37 -	./configure --prefix=/usr \
    2.38 -			--enable-gpl \
    2.39 -			--disable-mmx \
    2.40 -			--qimage-libdir=/usr/lib/ \
    2.41 -			--qimage-includedir=/usr/include/Qt \
    2.42 -			--avformat-swscale &&
    2.43 -	make &&
    2.44 +	./configure					\
    2.45 +		--prefix=/usr				\
    2.46 +		--enable-gpl				\
    2.47 +		--disable-mmx				\
    2.48 +		--qimage-libdir=/usr/lib/		\
    2.49 +		--qimage-includedir=/usr/include/Qt	\
    2.50 +		--avformat-swscale &&
    2.51 +	make -j 1 &&
    2.52  	make install 
    2.53  }
    2.54  	
    2.55  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.56  genpkg_rules()
    2.57  {
    2.58 -	mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
    2.59 -	cp -a $install/usr/bin $fs/usr
    2.60 -	cp -a $install/usr/lib/*so* $fs/usr/lib/
    2.61 -	cp -a $install/usr/share/$PACKAGE $fs/usr/share
    2.62 -	cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
    2.63 +	mkdir -p $fs/usr/lib/$PACKAGE
    2.64 +	mkdir -p $fs/usr/share
    2.65 +
    2.66 +	cp -a $install/usr/bin			$fs/usr
    2.67 +	cp -a $install/usr/lib/*so*		$fs/usr/lib/
    2.68 +	cp -a $install/usr/share/$PACKAGE	$fs/usr/share
    2.69 +	cp -a $install/usr/lib/$PACKAGE/*so*	$fs/usr/lib/$PACKAGE
    2.70  }