Mercurial > hg > vamp-aubio-plugins
diff scripts/get_aubio.sh @ 120:4dd52e54ce43
scripts/get_aubio.sh: add script to compile aubio
author | Paul Brossier <piem@piem.org> |
---|---|
date | Thu, 21 Jul 2016 23:11:27 +0200 |
parents | |
children | 1b8362fd90b1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/get_aubio.sh Thu Jul 21 23:11:27 2016 +0200 @@ -0,0 +1,18 @@ +#! /bin/bash + +set -e +set -x + +mkdir -p contrib +pushd contrib +git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd ) + +#rm -rf aubio +pushd aubio +make getwaf +#./waf distclean +./waf configure --prefix=$PWD/../aubio-dist --disable-atlas +./waf build -v +./waf install -v +popd +popd