wok annotate 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
rev   line source
jozee@6826 1 # SliTaz package receipt.
jozee@6826 2
jozee@6826 3 PACKAGE="mlt"
slaxemulator@10156 4 VERSION="0.7.2"
jozee@6826 5 CATEGORY="multimedia"
jozee@6826 6 MAINTAINER="jozee@slitaz.org"
pascal@15583 7 LICENSE="LGPL2.1"
jozee@6826 8 SHORT_DESC="An open source multimedia framework"
jozee@6826 9 WEB_SITE="http://www.mltframework.org"
jozee@6826 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@6826 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@6826 12 TAGS="multimedia"
jozee@6826 13
pascal@19686 14 DEPENDS="libsdl-image libsamplerate libdv qt4 sox libxml2 gtk+ ffmpeg \
pascal@19686 15 frei0r-plugins"
pascal@19686 16 BUILD_DEPENDS="libsdl-image-dev libsamplerate-dev libdv-dev Qt4-dev sox-dev \
pascal@19686 17 libxml2-dev gtk+-dev ffmpeg-dev frei0r-plugins-dev"
pascal@15583 18
jozee@6826 19 # Rules to configure and make the package.
jozee@6826 20
jozee@6826 21 compile_rules() {
jozee@6826 22 ./configure --prefix=/usr \
jozee@6826 23 --enable-gpl \
jozee@6826 24 --disable-mmx \
jozee@6826 25 --qimage-libdir=/usr/lib/ \
jozee@6826 26 --qimage-includedir=/usr/include/Qt \
jozee@6826 27 --avformat-swscale &&
jozee@6826 28 make &&
slaxemulator@9081 29 make install
jozee@6826 30 }
jozee@6826 31
jozee@6826 32 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6826 33 genpkg_rules()
jozee@6826 34 {
jozee@6826 35 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
pascal@15583 36 cp -a $install/usr/bin $fs/usr
pascal@15583 37 cp -a $install/usr/lib/*so* $fs/usr/lib/
pascal@15583 38 cp -a $install/usr/share/$PACKAGE $fs/usr/share
pascal@15583 39 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
jozee@6826 40 }