e2fbd166f8dbfab4dbd4d1693edbcd92260bef76
[vamp-aubio-plugins.git] / scripts / get_waf.sh
1 #! /bin/sh
2
3 set -e
4 set -x
5
6 WAFURL=https://waf.io/waf-1.9.1
7
8 ( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf )
9
10 chmod +x waf