wok view mlt/receipt @ rev 16195

Up: asunder (2.5)
author Alexander Medvedev <devl547@gmail.com>
date Sun Mar 30 21:05:49 2014 +0000 (2014-03-30)
parents b2139a357c5d
children c8285a3d30a2
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 frei0r-plugins"
16 # Rules to configure and make the package.
18 compile_rules() {
19 cd $src
20 ./configure --prefix=/usr \
21 --enable-gpl \
22 --disable-mmx \
23 --qimage-libdir=/usr/lib/ \
24 --qimage-includedir=/usr/include/Qt \
25 --avformat-swscale &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*so* $fs/usr/lib/
36 cp -a $install/usr/share/$PACKAGE $fs/usr/share
37 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
38 }