wok-undigest rev 74

Add mlt-python-bindings
author Rohit Joshi <jozee@slitaz.org>
date Tue Apr 20 08:19:00 2010 -0400 (2010-04-20)
parents 8350d987bef1
children 51c6642db49d
files mlt-python-bindings/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mlt-python-bindings/receipt	Tue Apr 20 08:19:00 2010 -0400
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="mlt-python-bindings"
     1.7 +VERSION="0.5.0"
     1.8 +SOURCE="mlt"
     1.9 +CATEGORY="multimedia"
    1.10 +MAINTAINER="jozee@slitaz.org"
    1.11 +SHORT_DESC="python bindings for MLT multimedia framework"
    1.12 +WEB_SITE="http://www.mltframework.org"
    1.13 +DEPENDS="python mlt"
    1.14 +BUILD_DEPENDS="swig python mlt mlt-dev"
    1.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.16 +WGET_URL="$SF_MIRROR/mlt/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +
    1.20 +compile_rules() 
    1.21 +{
    1.22 +   cd $src/src/swig/python
    1.23 +  ./build 
    1.24 + 
    1.25 +}
    1.26 +	
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/usr/lib/python2.5/ 
    1.31 +	cp -a $src/src/swig/python/mlt.py $fs/usr/lib/python2.5/ 
    1.32 +	cp -a $src/src/swig/python/_mlt.so $fs/usr/lib/python2.5/
    1.33 +	cp -a $src/src/swig/python/mlt_wrap.o  $fs/usr/lib/python2.5/ 
    1.34 +	
    1.35 +}