wok-undigest annotate mlt-python-bindings/receipt @ rev 173

Removed hydrogen and depends. There in wok now.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 13:59:15 2010 +0000 (2010-10-19)
parents
children
rev   line source
jozee@74 1 # SliTaz package receipt.
jozee@74 2
jozee@74 3 PACKAGE="mlt-python-bindings"
jozee@74 4 VERSION="0.5.0"
jozee@74 5 SOURCE="mlt"
jozee@74 6 CATEGORY="multimedia"
jozee@74 7 MAINTAINER="jozee@slitaz.org"
jozee@74 8 SHORT_DESC="python bindings for MLT multimedia framework"
jozee@74 9 WEB_SITE="http://www.mltframework.org"
jozee@74 10 DEPENDS="python mlt"
jozee@74 11 BUILD_DEPENDS="swig python mlt mlt-dev"
jozee@74 12 TARBALL="$SOURCE-$VERSION.tar.gz"
jozee@74 13 WGET_URL="$SF_MIRROR/mlt/$TARBALL"
jozee@74 14
jozee@74 15 # Rules to configure and make the package.
jozee@74 16
jozee@74 17 compile_rules()
jozee@74 18 {
jozee@74 19 cd $src/src/swig/python
jozee@74 20 ./build
jozee@74 21
jozee@74 22 }
jozee@74 23
jozee@74 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@74 25 genpkg_rules()
jozee@74 26 {
jozee@74 27 mkdir -p $fs/usr/lib/python2.5/
jozee@74 28 cp -a $src/src/swig/python/mlt.py $fs/usr/lib/python2.5/
jozee@74 29 cp -a $src/src/swig/python/_mlt.so $fs/usr/lib/python2.5/
jozee@74 30 cp -a $src/src/swig/python/mlt_wrap.o $fs/usr/lib/python2.5/
jozee@74 31
jozee@74 32 }