Fix the swig bindings for melted++.
[melted] / src / swig / python / build
index 7c7ff23..63423ad 100755 (executable)
@@ -9,16 +9,16 @@ then
 
        [ ! -d "$PYTHON_INCLUDE" ] && echo python development missing && exit 1
 
-       ln -sf ../mltpp.i .
+       ln -sf ../melted.i
 
        # Invoke swig
-       swig -c++ -I../../src `pkg-config mlt-framework --cflags` -python mltpp.i || exit $?
+       swig -c++ -I../../melted++ `pkg-config mlt++ --cflags` -python melted.i || exit $?
 
        # Compile the wrapper
-       g++ -fPIC -D_GNU_SOURCE -c -rdynamic -pthread `pkg-config mlt-framework --cflags` -I$PYTHON_INCLUDE mltpp_wrap.cxx || exit $?
+       g++ -fPIC -D_GNU_SOURCE -c -rdynamic -pthread -I../../melted++ `pkg-config mlt++ --cflags` -I$PYTHON_INCLUDE melted_wrap.cxx || exit $?
 
        # Create the module
-       gcc -shared mltpp_wrap.o -L../../src -lmlt++ -o _mltpp.so || exit $?
+       gcc -shared melted_wrap.o -L../../melted++ -lmelted++ -o _melted.so || exit $?
 else
        echo Python not installed.
        exit 1