view scripts/get_waf.sh @ 156:e20eb5ee1731

scripts/get_aubio.sh: clean-up
author Paul Brossier <piem@piem.org>
date Fri, 22 Jul 2016 18:29:59 +0200
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