view scripts/get_aubio.sh @ 161:01b4286e1dab

scripts/get_aubio.sh: always pass options
author Paul Brossier <piem@piem.org>
date Sun, 24 Jul 2016 20:37:41 +0200
parents e20eb5ee1731
children 18f453a30ac7
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
./scripts/get_waf.sh
#./waf distclean
./waf configure --prefix=$PWD/../aubio-dist $WAFOPTS
./waf build -v $WAFOPTS
./waf install -v $WAFOPTS
popd
popd