wok view mlt/receipt @ rev 19686

Up opus (1.1.4) CVE-2017-0381
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 12 16:39:41 2017 +0100 (2017-02-12)
parents bb009a6ef036
children 775714eeb4c8
line source
1 # SliTaz package receipt.
3 PACKAGE="mlt"
4 VERSION="0.7.2"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="An open source multimedia framework"
9 WEB_SITE="http://www.mltframework.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="multimedia"
14 DEPENDS="libsdl-image libsamplerate libdv qt4 sox libxml2 gtk+ ffmpeg \
15 frei0r-plugins"
16 BUILD_DEPENDS="libsdl-image-dev libsamplerate-dev libdv-dev Qt4-dev sox-dev \
17 libxml2-dev gtk+-dev ffmpeg-dev frei0r-plugins-dev"
19 # Rules to configure and make the package.
21 compile_rules() {
22 ./configure --prefix=/usr \
23 --enable-gpl \
24 --disable-mmx \
25 --qimage-libdir=/usr/lib/ \
26 --qimage-includedir=/usr/include/Qt \
27 --avformat-swscale &&
28 make &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*so* $fs/usr/lib/
38 cp -a $install/usr/share/$PACKAGE $fs/usr/share
39 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
40 }