shithub: aubio

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

View raw version
#! /bin/sh

set -e
set -x

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

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

chmod +x waf