view scripts/get_waf.sh @ 194:c22402c78df4

scripts/get_aubio.sh: disable external dependencies, use curl
author Paul Brossier <piem@piem.org>
date Tue, 14 Feb 2017 00:47:17 +0100
parents 853f9644ad9c
children
line wrap: on
line source
#! /bin/sh

set -e
set -x

WAFURL=https://waf.io/waf-1.8.22

( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf )

chmod +x waf