From 2c8d237a4fe6e269fd78005f6aba963f9db0f60f Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 21 Jul 2016 23:11:27 +0200 Subject: [PATCH] scripts/get_aubio.sh: add script to compile aubio --- scripts/get_aubio.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 scripts/get_aubio.sh 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 -- 2.11.0