shithub: aubio

ref: a1cce65ba7e25544c3fa771687c7c8245f57fd89
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