From: Paul Brossier Date: Thu, 21 Jul 2016 21:11:27 +0000 (+0200) Subject: scripts/get_aubio.sh: add script to compile aubio X-Git-Tag: 0.5.1~71 X-Git-Url: https://git.aubio.org/?p=vamp-aubio-plugins.git;a=commitdiff_plain;h=2c8d237a4fe6e269fd78005f6aba963f9db0f60f scripts/get_aubio.sh: add script to compile aubio --- diff --git a/scripts/get_aubio.sh b/scripts/get_aubio.sh new file mode 100755 index 0000000..bf53acb --- /dev/null +++ b/scripts/get_aubio.sh @@ -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