Mercurial > hg > vamp-aubio-plugins
annotate scripts/get_waf.sh @ 198:3a76aa26b578 tip master
wscript: check for 64bit using sys.maxsize (closes #3)
author | Paul Brossier <piem@piem.org> |
---|---|
date | Mon, 04 Dec 2017 01:42:19 +0100 |
parents | 853f9644ad9c |
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 |