Mercurial > hg > vamp-aubio-plugins
view scripts/get_aubio.sh @ 128:853f9644ad9c
scripts/get_waf.sh: use 1.8.22
author | Paul Brossier <piem@piem.org> |
---|---|
date | Fri, 22 Jul 2016 05:20:09 +0200 |
parents | 4dd52e54ce43 |
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