wok annotate mlt-python-bindings/receipt @ rev 8641

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