shithub: aubio

ref: 8991aafe781a85af97aec013d197146ccc23b1e9
dir: /scripts/get_waf.sh/

View raw version
#! /bin/sh

set -e
set -x

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

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

chmod +x waf