From: Paul Brossier Date: Thu, 21 Jul 2016 21:02:08 +0000 (+0200) Subject: scripts/get_waf.sh: add script to fetch latest waf X-Git-Tag: 0.5.1~73 X-Git-Url: https://git.aubio.org/?p=vamp-aubio-plugins.git;a=commitdiff_plain;h=50179e64abae6081f0109c524eea2ec796759b54 scripts/get_waf.sh: add script to fetch latest waf --- diff --git a/scripts/get_waf.sh b/scripts/get_waf.sh new file mode 100755 index 0000000..e2fbd16 --- /dev/null +++ b/scripts/get_waf.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +set -e +set -x + +WAFURL=https://waf.io/waf-1.9.1 + +( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf ) + +chmod +x waf