Mercurial > hg > vamp-aubio-plugins
view 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 source
#! /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