rename INSTALL.foo to build_foo.sh
[vamp-aubio-plugins.git] / scripts / get_aubio.sh
1 #! /bin/bash
2
3 set -e
4 set -x
5
6 mkdir -p contrib
7 pushd contrib
8 git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd )
9
10 #rm -rf aubio
11 pushd aubio
12 ./scripts/get_waf.sh
13 #./waf distclean
14 ./waf configure --prefix=$PWD/../aubio-dist $WAFOPTS
15 ./waf build -v
16 ./waf install -v
17 popd
18 popd