6 Funky non-autotool config script for MLT.
10 --help - this information
11 --prefix=directory - install prefix for path (default: $prefix)
14 for i in src/modules/*
16 [ -d $i ] && echo " --disable-`basename $i`"
25 # Define build directory for scripts called
26 export build_dir=`dirname $0`
27 export prefix=/usr/local
30 # Iterate through arguments
35 --prefix=* ) prefix="${i#--prefix=}" ;;
39 # Show help if requested
40 [ $help = 1 ] && show_help
42 # Iterate through each of the components
43 for i in framework modules inigo valerie miracle humperdink
45 if [ -x src/$i/configure ]
47 echo "Configuring `basename $i`:"
48 pushd src/$i > /dev/null