-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathinstall-deps
More file actions
executable file
·228 lines (195 loc) · 5.78 KB
/
install-deps
File metadata and controls
executable file
·228 lines (195 loc) · 5.78 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#!/bin/bash
set -e
#### Config
NODE_DOWNLOAD='http://nodejs.org/dist/v0.6.10/node-v0.6.10.tar.gz'
NPM_DOWNLOAD='http://npmjs.org/install.sh'
VIRTUALENV_DOWNLOAD='http://github.com/pypa/virtualenv/raw/develop/virtualenv.py'
MONGODB_DOWNLOAD='http://fastdl.mongodb.org/OS/mongodb-OS-ARCH-2.0.0.tgz'
#### Helper functions
# check_for name exec_name version_command [minimum_version]
check_for() {
name="$1"
command="$2"
get_version="$3"
min_version="$4"
max_version="$5"
if which $command >/dev/null 2>&1; then
# It's installed
version=$($get_version 2>/dev/null | grep -o -E [-0-9.]\{1,\} | head -n 1)
if [ -n "$version" ]; then
echo "$name version $version found."
if [ -n "$min_version" ]; then
if ! perl -e 'exit 1 unless v'$version' ge v'$min_version
then
echo "$1 version $version found (>=$min_version required)"
return 1
fi
if [ -n "$max_version" ]; then
if ! perl -e 'exit 1 unless v'$version' lt v'$max_version
then
echo "$1 version $version found (<$max_version required)"
return 1
fi
fi
fi
return 0
fi
# fall through
fi
# not found
min="${min_version:-(none)}"
max="${max_version:-(none)}"
echo "$name not found (want version >= $min and < $max)"
return 1
}
# check_for_pkg_config name pkg_config_name [minimum_version [optional]]
check_for_pkg_config() {
name="$1"
pkg_config_name="$2"
min_version="$3"
if ! which pkg-config >/dev/null 2>&1; then
echo "pkg-config is not installed: assuming $name is not present either"
return 1
fi
if ! pkg-config --exists "$pkg_config_name"
then
echo "$name not found!" >&2
return 1
fi
version="$(pkg-config --modversion "$pkg_config_name")"
echo "${name} version ${version} found."
[ -z "$min_version" ] && return 0
if pkg-config --atleast-version="$min_version" "$pkg_config_name"
then
return 0
else
echo "$name version $min_version or greater required!" >&2
return 1
fi
}
download () {
base="$(basename $1)"
if [ -f ${base} ]
then
echo "$1 already downloaded."
else
if wget "$1" 2>/dev/null || curl -L -o ${base} "$1"
then
echo "Downloaded $1."
else
echo "Download of $1 failed!" >&2
exit 1
fi
fi
}
#### Main script
if [ "$1" = "--check-only" ]; then
check_only=true
else
prefix="$1"
if [ ! -n "$prefix" ]; then
echo "Usage: install-dependencies <install prefix>"
fi
mkdir -p "${prefix}"
# canonicalize (MacOS doesn't have readlink -f)
prefix=$(cd "$prefix"; pwd)
envscript="${prefix}/environment.sh"
cat > "${envscript}" <<MRBARGLES
export PATH="${prefix}/local/bin":${PATH}
export NODE_PATH="${prefix}/local/lib/node_modules":${NODE_PATH}
export PKG_CONFIG_PATH="${prefix}/local/lib/pkgconfig":${PKG_CONFIG_PATH}
export CXXFLAGS="-I${prefix}/local/include"
export LD_LIBRARY_PATH="${prefix}/local/lib"
export LIBRARY_PATH="${prefix}/local/lib"
MRBARGLES
. "${envscript}"
mkdir -p ${prefix}/build
cd ${prefix}/build
fi
check_for Git git 'git --version'
#check_for Python python 'python -V' 2.6
if ! check_for Node.js node 'node -v' 0.6.0 0.7.0
then
if [ "$check_only" = true ]; then exit 1; fi
echo ""
echo "You don't seem to have node.js installed."
echo "I will download, build, and install it locally."
echo "This could take quite some time!"
download "${NODE_DOWNLOAD}"
tar zxf "$(basename "${NODE_DOWNLOAD}")"
cd $(basename "${NODE_DOWNLOAD}" .tar.gz)
./configure --prefix="${prefix}/local"
make
make install
echo "Installed node.js into ${prefix}"
fi
if ! check_for npm npm "npm -v" 1
then
if [ "$check_only" = true ]; then exit 1; fi
echo ""
echo "About to download and install locally npm."
cd "${prefix}/build"
download "${NPM_DOWNLOAD}"
if cat "$(basename ${NPM_DOWNLOAD})" | clean=no sh
then
echo "Installed npm into ${prefix}"
else
echo "Failed to install npm into ${prefix}" >&2
exit 1
fi
fi
if ! check_for mongoDB mongod "mongod --version" 1.8.0
then
if [ "$check_only" = true ]; then exit 1; fi
OS=`uname -s`
case "${OS}" in
Linux)
OS=linux
;;
Darwin)
OS=osx
;;
*)
echo "Don't recognize OS ${OS}" >&2
exit 1
esac
BITS=`getconf LONG_BIT`
ARCH='x86_64'
if [ "${BITS}" -ne 64 ]
then
ARCH="i386"
if [ "${OS}" != "osx" ]
then
ARCH="i686"
fi
fi
echo ""
echo "Downloading and installing locally mongoDB"
MONGODB_DOWNLOAD=$(echo ${MONGODB_DOWNLOAD} | sed -e "s/OS/${OS}/g" -e "s/ARCH/${ARCH}/g")
download "${MONGODB_DOWNLOAD}"
if tar zxf $(basename "${MONGODB_DOWNLOAD}") &&
cp $(basename "${MONGODB_DOWNLOAD}" .tgz)/bin/* "${prefix}/local/bin"
then
echo "Installed local mongoDB."
else
echo "Failed to install local mongoDB." >&2
exit 1
fi
fi
if ! check_for ImageMagick convert "convert --version" 6.0
then
if [ "$check_only" = true ]; then exit 1; fi
echo ""
echo "Installing ImageMagick, please input the password, if asked."
sudo apt-get install imagemagick
if check_for ImageMagick convert "convert --version" 6.0
then
echo "Installed ImageMagick."
else
echo "Failed to install ImageMagick." >&2
exit 1
fi
fi
if [ "$check_only" != true ]; then
rm -rf "${prefix}/build"
fi