gp_install.sh
2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/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] <target-dir>
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