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 ] && [ "`basename $i`" != "CVS" ] && echo " --disable-`basename $i`"
26 echo bindir=$prefix/bin
32 # Define build directory for scripts called
33 export build_dir=`dirname $0`
34 export prefix=/usr/local
37 # Iterate through arguments
42 --prefix=* ) prefix="${i#--prefix=}" ;;
46 # Show help if requested
47 [ $help = 1 ] && show_help || build_config > config.mak
49 # Iterate through each of the components
50 for i in framework modules inigo valerie miracle humperdink
52 if [ -x src/$i/configure ]
54 echo "Configuring `basename $i`:"
55 pushd src/$i > /dev/null