wok view mlt-python-bindings/receipt @ 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
children 99e8c056d76f
line source
1 # SliTaz package receipt.
3 PACKAGE="mlt-python-bindings"
4 VERSION="0.5.0"
5 SOURCE="mlt"
6 CATEGORY="multimedia"
7 MAINTAINER="jozee@slitaz.org"
8 SHORT_DESC="python bindings for MLT multimedia framework"
9 WEB_SITE="http://www.mltframework.org"
10 DEPENDS="python mlt"
11 BUILD_DEPENDS="swig python mlt mlt-dev"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/mlt/$TARBALL"
15 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/src/swig/python
20 ./build
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/python2.5/
28 cp -a $src/src/swig/python/mlt.py $fs/usr/lib/python2.5/
29 cp -a $src/src/swig/python/_mlt.so $fs/usr/lib/python2.5/
30 cp -a $src/src/swig/python/mlt_wrap.o $fs/usr/lib/python2.5/
32 }