wok view mlt/receipt @ rev 20742

updated bchunk (1.2.0 -> 1.2.2)
author Hans-G?nter Theisgen
date Sun Feb 10 09:37:43 2019 +0100 (2019-02-10)
parents f8489295fb90
children 06fd77e6f1e7
line source
1 # SliTaz package receipt.
3 PACKAGE="mlt"
4 VERSION="6.4.1"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="An open source multimedia framework"
9 WEB_SITE="https://www.mltframework.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/mltframework/mlt/archive/v$VERSION.tar.gz"
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 mesa-dev alsa-lib-dev \
18 pulseaudio-dev"
20 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure --prefix=/usr \
25 --enable-gpl \
26 --disable-mmx \
27 --qimage-libdir=/usr/lib/ \
28 --qimage-includedir=/usr/include/Qt \
29 --avformat-swscale &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*so* $fs/usr/lib/
40 cp -a $install/usr/share/$PACKAGE $fs/usr/share
41 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
42 }