view scripts/get_aubio.sh @ 158:4b5c9e2d11c7

wscript: add optional cblas on linux
author Paul Brossier <piem@piem.org>
date Sun, 24 Jul 2016 11:34:59 +0200
parents e20eb5ee1731
children 01b4286e1dab
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
./waf install -v
popd
popd