wok rev 6826
Add mlt: mv from undigest
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Tue Oct 19 21:09:51 2010 -0400 (2010-10-19) |
parents | ac6fd5f970ad |
children | 167fbe7a66e4 |
files | mlt-dev/receipt mlt-python-bindings/receipt mlt/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mlt-dev/receipt Tue Oct 19 21:09:51 2010 -0400 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mlt-dev" 1.7 +VERSION="0.5.0" 1.8 +CATEGORY="development" 1.9 +MAINTAINER="jozee@slitaz.org" 1.10 +SHORT_DESC="mlt devel files" 1.11 +WEB_SITE="http://www.mltframework.org" 1.12 +WANTED="mlt" 1.13 + 1.14 + 1.15 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.16 +genpkg_rules() 1.17 +{ 1.18 + mkdir -p $fs/usr/lib 1.19 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.20 + cp -a $_pkg/usr/include $fs/usr 1.21 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/mlt-python-bindings/receipt Tue Oct 19 21:09:51 2010 -0400 2.3 @@ -0,0 +1,32 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="mlt-python-bindings" 2.7 +VERSION="0.5.0" 2.8 +SOURCE="mlt" 2.9 +CATEGORY="multimedia" 2.10 +MAINTAINER="jozee@slitaz.org" 2.11 +SHORT_DESC="python bindings for MLT multimedia framework" 2.12 +WEB_SITE="http://www.mltframework.org" 2.13 +DEPENDS="python mlt" 2.14 +BUILD_DEPENDS="swig python mlt mlt-dev" 2.15 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.16 +WGET_URL="$SF_MIRROR/mlt/$TARBALL" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 + 2.20 +compile_rules() 2.21 +{ 2.22 + cd $src/src/swig/python 2.23 + ./build 2.24 + 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr/lib/python2.5/ 2.31 + cp -a $src/src/swig/python/mlt.py $fs/usr/lib/python2.5/ 2.32 + cp -a $src/src/swig/python/_mlt.so $fs/usr/lib/python2.5/ 2.33 + cp -a $src/src/swig/python/mlt_wrap.o $fs/usr/lib/python2.5/ 2.34 + 2.35 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/mlt/receipt Tue Oct 19 21:09:51 2010 -0400 3.3 @@ -0,0 +1,38 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="mlt" 3.7 +VERSION="0.5.0" 3.8 +CATEGORY="multimedia" 3.9 +MAINTAINER="jozee@slitaz.org" 3.10 +SHORT_DESC="An open source multimedia framework" 3.11 +WEB_SITE="http://www.mltframework.org" 3.12 +DEPENDS="libsdl-image libsamplerate libdv qt sox libxml2 gtk+ ffmpeg-svn frei0r-plugins" 3.13 +BUILD_DEPENDS="libsamplerate-dev libdv-dev sox-dev Qt4-dev libxml2-dev gtk+-dev ffmpeg-svn-dev libsdl-image-dev frei0r-plugins-dev" 3.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.16 +TAGS="multimedia" 3.17 + 3.18 +# Rules to configure and make the package. 3.19 + 3.20 +compile_rules() { 3.21 + cd $src 3.22 + ./configure --prefix=/usr \ 3.23 + --enable-gpl \ 3.24 + --disable-mmx \ 3.25 + --qimage-libdir=/usr/lib/ \ 3.26 + --qimage-includedir=/usr/include/Qt \ 3.27 + --avformat-swscale && 3.28 + make && 3.29 + make DESTDIR=$PWD/_pkg install 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share 3.36 + cp -a $_pkg/usr/bin $fs/usr 3.37 + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ 3.38 + cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 3.39 + cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE 3.40 + 3.41 +}