shithub: aubio

ref: 4deb2559e0c36694474a010a1292f0d1605acebd
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