shithub: aubio

ref: fee00949173342f9e7ea167f0c5f3dbf4b303472
dir: /scripts/get_waf.sh/

View raw version
#! /bin/sh

set -e
set -x

WAFURL=https://waf.io/waf-2.0.1

( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf )

chmod +x waf