#!/bin/bash # Copyright 2012 Arnab Ghoshal # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED # WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, # MERCHANTABLITY OR NON-INFRINGEMENT. # See the Apache 2 License for the specific language governing permissions and # limitations under the License. function errexit () { echo -e "$@" >&2; exit 1; } . ./path.sh # Begin configuration section. install_shorten=false install_sox=false # end configuration sections help_message="Usage: "`basename $0`" [options] options: --help # print this message and exit --install-shorten (true|false) # default: false --install-sox (true|false) # default: false "; . utils/parse_options.sh if ! [ $install_shorten -o $install_sox ]; then printf "$help_message\n"; exit 0; fi if [ $# -lt 1 ]; then printf "$help_message\n"; exit 1; fi DIR=$1 cd $DIR if $install_shorten; then if [ -d tools/shorten-3.6.1 ]; then echo "$DIR/tools/shorten-3.6.1 already exists. Remove before continuing." else echo -n "Installing shorten ... " mkdir -p tools cd tools ( rm -f shorten-3.6.1.tar.gz wget http://etree.org/shnutils/shorten/dist/src/shorten-3.6.1.tar.gz \ || errexit "Download failed for shorten-3.6.1."; set -e tar -zxf shorten-3.6.1.tar.gz; cd shorten-3.6.1 ./configure --prefix=`pwd` make # make check -- Run this manually. 1 test fails when run from here, but # not when run directly from the command line! make install set +e # cd .. ) >> install.log 2>&1 if [ $? -ne 0 ]; then echo "shorten installation failed (see tools/install.log)." exit 1; else echo "installation succeeded." fi fi fi cd $DIR if $install_sox; then if [ -d tools/sox-14.3.2 ]; then echo "$DIR/tools/sox-14.3.2 already exists. Remove before continuing." else echo -n "Installing sox ... " mkdir -p tools cd tools ( rm -f sox-14.3.2.tar.bz2 wget http://sourceforge.net/projects/sox/files/sox/14.3.2/sox-14.3.2.tar.bz2 || errexit "Download failed for sox-14.3.2."; set -e tar -jxf sox-14.3.2.tar.bz2; cd sox-14.3.2 ./configure --prefix=`pwd` make -j 4 make install set +e # cd .. ) >> install.log 2>&1 if [ $? -ne 0 ]; then echo "sox installation failed (see tools/install.log)." exit 1; else echo "installation succeeded." fi fi fi cd $DIR