Mercurial > hg > vamp-aubio-plugins
annotate scripts/get_waf.sh @ 128:853f9644ad9c
scripts/get_waf.sh: use 1.8.22
author | Paul Brossier <piem@piem.org> |
---|---|
date | Fri, 22 Jul 2016 05:20:09 +0200 |
parents | 025228ce4973 |
children |
rev | line source |
---|---|
piem@118 | 1 #! /bin/sh |
piem@118 | 2 |
piem@118 | 3 set -e |
piem@118 | 4 set -x |
piem@118 | 5 |
piem@128 | 6 WAFURL=https://waf.io/waf-1.8.22 |
piem@118 | 7 |
piem@118 | 8 ( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf ) |
piem@118 | 9 |
piem@118 | 10 chmod +x waf |