source: scripts/get_waf.sh @ 423a427

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/timestretchfix/ffmpeg5
Last change on this file since 423a427 was 54966f5, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[waf] bummp to 2.0.13

  • Property mode set to 100755
File size: 996 bytes
RevLine 
[ee4fc9c]1#! /bin/bash
[7858305]2
3set -e
[e561ca7]4#set -x
[7858305]5
[54966f5]6WAFVERSION=2.0.13
[ee4fc9c]7WAFTARBALL=waf-$WAFVERSION.tar.bz2
8WAFURL=https://waf.io/$WAFTARBALL
[e561ca7]9WAFUPSTREAMKEY=https://gitlab.com/ita1024/waf/raw/master/utils/pubkey.asc
[7858305]10
[ee4fc9c]11WAFBUILDDIR=`mktemp -d`
[7858305]12
[ee4fc9c]13function cleanup () {
14  rm -rf $WAFBUILDDIR
15}
16
17trap cleanup SIGINT SIGTERM
18
[e561ca7]19function download () {
20  ( [[ -n `which wget` ]] && wget -qO $1 $2 ) || ( [[ -n `which curl` ]] && curl -so $1 $2 )
21}
22
23function checkwaf () {
24  download $WAFTARBALL.asc $WAFURL.asc
25  if [[ -z `which gpg` ]]
26  then
27    echo "Warning: gpg not found, not verifying signature for $WAFTARBALL"
28  else
29    download - $WAFUPSTREAMKEY | gpg --import
30    gpg --verify $WAFTARBALL.asc || exit 1
31  fi
32}
[ee4fc9c]33
[e561ca7]34function fetchwaf () {
35  download $WAFTARBALL $WAFURL
36  checkwaf
37}
[ee4fc9c]38
[e561ca7]39function buildwaf () {
[ee4fc9c]40  tar xf $WAFTARBALL
41  pushd waf-$WAFVERSION
[bb07c7e]42  NOCLIMB=1 python waf-light --tools=c_emscripten $*
[ee4fc9c]43  popd
44}
45
[e561ca7]46pushd $WAFBUILDDIR
47fetchwaf
[ee4fc9c]48buildwaf
[e561ca7]49popd
50
51cp -prv $WAFBUILDDIR/waf-$WAFVERSION/waf $PWD
52chmod +x waf
[ee4fc9c]53
54cleanup
Note: See TracBrowser for help on using the repository browser.