# SliTaz package receipt. PACKAGE="mlt" VERSION="0.7.2" CATEGORY="multimedia" MAINTAINER="jozee@slitaz.org" SHORT_DESC="An open source multimedia framework" WEB_SITE="http://www.mltframework.org" DEPENDS="libsdl-image libsamplerate libdv qt4 sox libxml2 gtk+ ffmpeg frei0r-plugins" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" TAGS="multimedia" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr \ --enable-gpl \ --disable-mmx \ --qimage-libdir=/usr/lib/ \ --qimage-includedir=/usr/include/Qt \ --avformat-swscale && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE }