wok view 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 source
1 # SliTaz package receipt.
3 PACKAGE="mlt"
4 VERSION="6.14.0"
5 CATEGORY="multimedia"
6 TAGS="multimedia"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL2.1"
9 SHORT_DESC="An open source multimedia framework."
10 WEB_SITE="https://www.mltframework.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/mltframework/mlt/archive/v$VERSION.tar.gz"
15 DEPENDS="ffmpeg frei0r-plugins gtk+ libdv libsamplerate libsdl-image libxml2 \
16 qt4 sox"
17 BUILD_DEPENDS="alsa-lib-dev ffmpeg-dev frei0r-plugins-dev gtk+-dev \
18 libdv-dev libsamplerate-dev libsdl-image-dev libxml2-dev \
19 mesa-dev pulseaudio-dev Qt4-dev sox-dev"
21 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --prefix=/usr \
27 --enable-gpl \
28 --disable-mmx \
29 --qimage-libdir=/usr/lib/ \
30 --qimage-includedir=/usr/include/Qt \
31 --avformat-swscale &&
32 make -j 1 &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/lib/$PACKAGE
40 mkdir -p $fs/usr/share
42 cp -a $install/usr/bin $fs/usr
43 cp -a $install/usr/lib/*so* $fs/usr/lib/
44 cp -a $install/usr/share/$PACKAGE $fs/usr/share
45 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
46 }