wok-next view mlt/receipt @ rev 21087

Updates...
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 28 05:11:49 2018 +0200 (2018-12-28)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="mlt"
4 VERSION="0.7.2"
5 CATEGORY="multimedia"
6 MAINTAINER="devel@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="An open source multimedia framework"
9 WEB_SITE="https://www.mltframework.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 SPLIT="$PACKAGE-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --enable-gpl \
20 --disable-mmx \
21 --qimage-libdir=/usr/lib/ \
22 --qimage-includedir=/usr/include/Qt \
23 --avformat-swscale &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 mlt)
31 copy @std
32 DEPENDS="sdl-image libsamplerate libdv qt4 sox libxml2 gtk2 \
33 ffmpeg frei0r-plugins"
34 TAGS="multimedia"
35 ;;
36 *-dev)
37 copy @dev
38 ;;
39 esac
40 }