Mercurial > hg > vamp-aubio-plugins
comparison scripts/get_aubio.sh @ 196:84fbc387ebd4
scripts/get_aubio.sh: show actual aubio version being used
author | Paul Brossier <piem@piem.org> |
---|---|
date | Tue, 14 Feb 2017 00:51:33 +0100 |
parents | c22402c78df4 |
children |
comparison
equal
deleted
inserted
replaced
195:244d430c358b | 196:84fbc387ebd4 |
---|---|
13 if [ -n "$VAMP_AUBIO_VERSION_STATUS" ] | 13 if [ -n "$VAMP_AUBIO_VERSION_STATUS" ] |
14 then | 14 then |
15 git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd ) | 15 git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd ) |
16 pushd aubio | 16 pushd aubio |
17 else | 17 else |
18 echo "using release 0.4.4" | 18 echo "using aubio $AUBIO_VERSION" |
19 tarball=aubio-$AUBIO_VERSION.tar.bz2 | 19 tarball=aubio-$AUBIO_VERSION.tar.bz2 |
20 [ -f $tarball ] || curl -O https://aubio.org/pub/$tarball | 20 [ -f $tarball ] || curl -O https://aubio.org/pub/$tarball |
21 [ -f $tarball.asc ] || curl -O https://aubio.org/pub/$tarball.asc | 21 [ -f $tarball.asc ] || curl -O https://aubio.org/pub/$tarball.asc |
22 gpg --verify $tarball.asc $tarball | 22 gpg --verify $tarball.asc $tarball |
23 rm -rf ${tarball%%.tar.bz2} && tar xf $tarball | 23 rm -rf ${tarball%%.tar.bz2} && tar xf $tarball |