-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathci_dependencies.sh
More file actions
executable file
·441 lines (411 loc) · 19 KB
/
ci_dependencies.sh
File metadata and controls
executable file
·441 lines (411 loc) · 19 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#!/usr/bin/env bash
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# READ THE ZPROJECT/README.MD FOR INFORMATION ABOUT MAKING PERMANENT CHANGES. #
################################################################################
REQUESTED_BRANCH=$1
set -e
if [ -z "$DEPENDENCIES_DIR" ]; then
export DEPENDENCIES_DIR="`pwd`/tmp-deps"
fi
mkdir -p "$DEPENDENCIES_DIR"
cd "$DEPENDENCIES_DIR"
# Clone and build dependencies, if not yet installed to Travis env as DEBs
# or MacOS packages; other OSes are not currently supported by Travis cloud
echo "`date`: Starting build of dependencies (if any) using ci_dependencies.sh $REQUESTED_BRANCH..."
# Start of recipe for dependency: libsodium
if ! (command -v dpkg-query >/dev/null 2>&1 && dpkg-query --list libsodium-dev >/dev/null 2>&1) || \
(command -v brew >/dev/null 2>&1 && brew ls --versions libsodium >/dev/null 2>&1) || \
([ -e "libsodium" ]) \
; then
FOLDER_NAME="libsodium"
if [ -d "$FOLDER_NAME" ]; then
echo "$FOLDER_NAME already exist. Skipped." >&2
else
echo ""
BASE_PWD=${PWD}
echo "`date`: INFO: Building prerequisite 'libsodium' from Git repository..." >&2
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "git clone https://github.com/42ity/libsodium.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/libsodium.git $FOLDER_NAME
else
if git ls-remote --heads https://github.com/42ity/libsodium.git | grep -q "$REQUESTED_BRANCH"; then
echo "git clone -b "$REQUESTED_BRANCH" https://github.com/42ity/libsodium.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 -b "$REQUESTED_BRANCH" https://github.com/42ity/libsodium.git $FOLDER_NAME
else
echo "$REQUESTED_BRANCH not found for https://github.com/42ity/libsodium.git"
echo "git clone https://github.com/42ity/libsodium.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/libsodium.git $FOLDER_NAME
fi
fi
echo "Entering in ${PWD}/${FOLDER_NAME}"
cd "./${FOLDER_NAME}"
CCACHE_BASEDIR=${PWD}
export CCACHE_BASEDIR
git --no-pager log --oneline -n1
if [ -e ci_dependencies.sh ]; then
PROPAGATED_BRANCH="`git branch | grep * | cut -d ' ' -f2`"
DEFAULT_BRANCH="`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`"
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "`date`: INFO: Building prerequisites of 'libsodium' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
elif [ "x$PROPAGATED_BRANCH" = "x$DEFAULT_BRANCH" ]; then
echo "`date`: INFO: Building prerequisites of 'libsodium' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
else
echo "`date`: INFO: Building prerequisites of 'libsodium' using ci_dependencies.sh $PROPAGATED_BRANCH branch..." >&2
($CI_TIME source ./ci_dependencies.sh $PROPAGATED_BRANCH)
fi
fi
if [ -e autogen.sh ]; then
$CI_TIME ./autogen.sh 2> /dev/null
fi
if [ -e buildconf ]; then
$CI_TIME ./buildconf 2> /dev/null
fi
if [ ! -e autogen.sh ] && [ ! -e buildconf ] && [ ! -e ./configure ] && [ -s ./configure.ac ]; then
$CI_TIME libtoolize --copy --force && \
$CI_TIME aclocal -I . && \
$CI_TIME autoheader && \
$CI_TIME automake --add-missing --copy && \
$CI_TIME autoconf || \
$CI_TIME autoreconf -fiv
fi
$CI_TIME ./configure "${CONFIG_OPTS[@]}"
$CI_TIME make -j4
$CI_TIME make install
echo "Leaving from ${PWD}"
cd "${BASE_PWD}"
echo "Now in ${PWD}"
fi
fi
# Start of recipe for dependency: libzmq
if ! (command -v dpkg-query >/dev/null 2>&1 && dpkg-query --list libzmq3-dev >/dev/null 2>&1) || \
(command -v brew >/dev/null 2>&1 && brew ls --versions libzmq >/dev/null 2>&1) || \
([ -e "libzmq" ]) \
; then
FOLDER_NAME="libzmq"
if [ -d "$FOLDER_NAME" ]; then
echo "$FOLDER_NAME already exist. Skipped." >&2
else
echo ""
BASE_PWD=${PWD}
echo "`date`: INFO: Building prerequisite 'libzmq' from Git repository..." >&2
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "git clone https://github.com/42ity/libzmq.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/libzmq.git $FOLDER_NAME
else
if git ls-remote --heads https://github.com/42ity/libzmq.git | grep -q "$REQUESTED_BRANCH"; then
echo "git clone -b "$REQUESTED_BRANCH" https://github.com/42ity/libzmq.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 -b "$REQUESTED_BRANCH" https://github.com/42ity/libzmq.git $FOLDER_NAME
else
echo "$REQUESTED_BRANCH not found for https://github.com/42ity/libzmq.git"
echo "git clone https://github.com/42ity/libzmq.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/libzmq.git $FOLDER_NAME
fi
fi
echo "Entering in ${PWD}/${FOLDER_NAME}"
cd "./${FOLDER_NAME}"
CCACHE_BASEDIR=${PWD}
export CCACHE_BASEDIR
git --no-pager log --oneline -n1
if [ -e ci_dependencies.sh ]; then
PROPAGATED_BRANCH="`git branch | grep * | cut -d ' ' -f2`"
DEFAULT_BRANCH="`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`"
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "`date`: INFO: Building prerequisites of 'libzmq' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
elif [ "x$PROPAGATED_BRANCH" = "x$DEFAULT_BRANCH" ]; then
echo "`date`: INFO: Building prerequisites of 'libzmq' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
else
echo "`date`: INFO: Building prerequisites of 'libzmq' using ci_dependencies.sh $PROPAGATED_BRANCH branch..." >&2
($CI_TIME source ./ci_dependencies.sh $PROPAGATED_BRANCH)
fi
fi
if [ -e autogen.sh ]; then
$CI_TIME ./autogen.sh 2> /dev/null
fi
if [ -e buildconf ]; then
$CI_TIME ./buildconf 2> /dev/null
fi
if [ ! -e autogen.sh ] && [ ! -e buildconf ] && [ ! -e ./configure ] && [ -s ./configure.ac ]; then
$CI_TIME libtoolize --copy --force && \
$CI_TIME aclocal -I . && \
$CI_TIME autoheader && \
$CI_TIME automake --add-missing --copy && \
$CI_TIME autoconf || \
$CI_TIME autoreconf -fiv
fi
$CI_TIME ./configure "${CONFIG_OPTS[@]}"
$CI_TIME make -j4
$CI_TIME make install
echo "Leaving from ${PWD}"
cd "${BASE_PWD}"
echo "Now in ${PWD}"
fi
fi
# Start of recipe for dependency: czmq
if ! (command -v dpkg-query >/dev/null 2>&1 && dpkg-query --list libczmq-dev >/dev/null 2>&1) || \
(command -v brew >/dev/null 2>&1 && brew ls --versions czmq >/dev/null 2>&1) || \
([ -e "czmq" ]) \
; then
FOLDER_NAME="czmq"
if [ -d "$FOLDER_NAME" ]; then
echo "$FOLDER_NAME already exist. Skipped." >&2
else
echo ""
BASE_PWD=${PWD}
echo "`date`: INFO: Building prerequisite 'czmq' from Git repository..." >&2
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "git clone https://github.com/42ity/czmq.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/czmq.git $FOLDER_NAME
else
if git ls-remote --heads https://github.com/42ity/czmq.git | grep -q "$REQUESTED_BRANCH"; then
echo "git clone -b "$REQUESTED_BRANCH" https://github.com/42ity/czmq.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 -b "$REQUESTED_BRANCH" https://github.com/42ity/czmq.git $FOLDER_NAME
else
echo "$REQUESTED_BRANCH not found for https://github.com/42ity/czmq.git"
echo "git clone https://github.com/42ity/czmq.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/czmq.git $FOLDER_NAME
fi
fi
echo "Entering in ${PWD}/${FOLDER_NAME}"
cd "./${FOLDER_NAME}"
CCACHE_BASEDIR=${PWD}
export CCACHE_BASEDIR
git --no-pager log --oneline -n1
if [ -e ci_dependencies.sh ]; then
PROPAGATED_BRANCH="`git branch | grep * | cut -d ' ' -f2`"
DEFAULT_BRANCH="`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`"
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "`date`: INFO: Building prerequisites of 'czmq' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
elif [ "x$PROPAGATED_BRANCH" = "x$DEFAULT_BRANCH" ]; then
echo "`date`: INFO: Building prerequisites of 'czmq' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
else
echo "`date`: INFO: Building prerequisites of 'czmq' using ci_dependencies.sh $PROPAGATED_BRANCH branch..." >&2
($CI_TIME source ./ci_dependencies.sh $PROPAGATED_BRANCH)
fi
fi
if [ -e autogen.sh ]; then
$CI_TIME ./autogen.sh 2> /dev/null
fi
if [ -e buildconf ]; then
$CI_TIME ./buildconf 2> /dev/null
fi
if [ ! -e autogen.sh ] && [ ! -e buildconf ] && [ ! -e ./configure ] && [ -s ./configure.ac ]; then
$CI_TIME libtoolize --copy --force && \
$CI_TIME aclocal -I . && \
$CI_TIME autoheader && \
$CI_TIME automake --add-missing --copy && \
$CI_TIME autoconf || \
$CI_TIME autoreconf -fiv
fi
$CI_TIME ./configure "${CONFIG_OPTS[@]}"
$CI_TIME make -j4
$CI_TIME make install
echo "Leaving from ${PWD}"
cd "${BASE_PWD}"
echo "Now in ${PWD}"
fi
fi
# Start of recipe for dependency: malamute
if ! (command -v dpkg-query >/dev/null 2>&1 && dpkg-query --list libmlm-dev >/dev/null 2>&1) || \
(command -v brew >/dev/null 2>&1 && brew ls --versions malamute >/dev/null 2>&1) || \
([ -e "malamute" ]) \
; then
FOLDER_NAME="malamute"
if [ -d "$FOLDER_NAME" ]; then
echo "$FOLDER_NAME already exist. Skipped." >&2
else
echo ""
BASE_PWD=${PWD}
echo "`date`: INFO: Building prerequisite 'malamute' from Git repository..." >&2
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "git clone https://github.com/42ity/malamute.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/malamute.git $FOLDER_NAME
else
if git ls-remote --heads https://github.com/42ity/malamute.git | grep -q "$REQUESTED_BRANCH"; then
echo "git clone -b "$REQUESTED_BRANCH" https://github.com/42ity/malamute.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 -b "$REQUESTED_BRANCH" https://github.com/42ity/malamute.git $FOLDER_NAME
else
echo "$REQUESTED_BRANCH not found for https://github.com/42ity/malamute.git"
echo "git clone https://github.com/42ity/malamute.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/malamute.git $FOLDER_NAME
fi
fi
echo "Entering in ${PWD}/${FOLDER_NAME}"
cd "./${FOLDER_NAME}"
CCACHE_BASEDIR=${PWD}
export CCACHE_BASEDIR
git --no-pager log --oneline -n1
if [ -e ci_dependencies.sh ]; then
PROPAGATED_BRANCH="`git branch | grep * | cut -d ' ' -f2`"
DEFAULT_BRANCH="`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`"
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "`date`: INFO: Building prerequisites of 'malamute' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
elif [ "x$PROPAGATED_BRANCH" = "x$DEFAULT_BRANCH" ]; then
echo "`date`: INFO: Building prerequisites of 'malamute' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
else
echo "`date`: INFO: Building prerequisites of 'malamute' using ci_dependencies.sh $PROPAGATED_BRANCH branch..." >&2
($CI_TIME source ./ci_dependencies.sh $PROPAGATED_BRANCH)
fi
fi
if [ -e autogen.sh ]; then
$CI_TIME ./autogen.sh 2> /dev/null
fi
if [ -e buildconf ]; then
$CI_TIME ./buildconf 2> /dev/null
fi
if [ ! -e autogen.sh ] && [ ! -e buildconf ] && [ ! -e ./configure ] && [ -s ./configure.ac ]; then
$CI_TIME libtoolize --copy --force && \
$CI_TIME aclocal -I . && \
$CI_TIME autoheader && \
$CI_TIME automake --add-missing --copy && \
$CI_TIME autoconf || \
$CI_TIME autoreconf -fiv
fi
$CI_TIME ./configure "${CONFIG_OPTS[@]}"
$CI_TIME make -j4
$CI_TIME make install
echo "Leaving from ${PWD}"
cd "${BASE_PWD}"
echo "Now in ${PWD}"
fi
fi
# Start of recipe for dependency: fty-common-logging
if ! (command -v dpkg-query >/dev/null 2>&1 && dpkg-query --list libfty_common_logging-dev >/dev/null 2>&1) || \
(command -v brew >/dev/null 2>&1 && brew ls --versions fty-common-logging >/dev/null 2>&1) || \
([ -e "fty-common-logging" ]) \
; then
FOLDER_NAME="fty-common-logging"
if [ -d "$FOLDER_NAME" ]; then
echo "$FOLDER_NAME already exist. Skipped." >&2
else
echo ""
BASE_PWD=${PWD}
echo "`date`: INFO: Building prerequisite 'fty-common-logging' from Git repository..." >&2
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "git clone https://github.com/42ity/fty-common-logging.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/fty-common-logging.git $FOLDER_NAME
else
if git ls-remote --heads https://github.com/42ity/fty-common-logging.git | grep -q "$REQUESTED_BRANCH"; then
echo "git clone -b "$REQUESTED_BRANCH" https://github.com/42ity/fty-common-logging.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 -b "$REQUESTED_BRANCH" https://github.com/42ity/fty-common-logging.git $FOLDER_NAME
else
echo "$REQUESTED_BRANCH not found for https://github.com/42ity/fty-common-logging.git"
echo "git clone https://github.com/42ity/fty-common-logging.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/fty-common-logging.git $FOLDER_NAME
fi
fi
echo "Entering in ${PWD}/${FOLDER_NAME}"
cd "./${FOLDER_NAME}"
CCACHE_BASEDIR=${PWD}
export CCACHE_BASEDIR
git --no-pager log --oneline -n1
if [ -e ci_dependencies.sh ]; then
PROPAGATED_BRANCH="`git branch | grep * | cut -d ' ' -f2`"
DEFAULT_BRANCH="`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`"
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "`date`: INFO: Building prerequisites of 'fty-common-logging' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
elif [ "x$PROPAGATED_BRANCH" = "x$DEFAULT_BRANCH" ]; then
echo "`date`: INFO: Building prerequisites of 'fty-common-logging' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
else
echo "`date`: INFO: Building prerequisites of 'fty-common-logging' using ci_dependencies.sh $PROPAGATED_BRANCH branch..." >&2
($CI_TIME source ./ci_dependencies.sh $PROPAGATED_BRANCH)
fi
fi
if [ -e autogen.sh ]; then
$CI_TIME ./autogen.sh 2> /dev/null
fi
if [ -e buildconf ]; then
$CI_TIME ./buildconf 2> /dev/null
fi
if [ ! -e autogen.sh ] && [ ! -e buildconf ] && [ ! -e ./configure ] && [ -s ./configure.ac ]; then
$CI_TIME libtoolize --copy --force && \
$CI_TIME aclocal -I . && \
$CI_TIME autoheader && \
$CI_TIME automake --add-missing --copy && \
$CI_TIME autoconf || \
$CI_TIME autoreconf -fiv
fi
$CI_TIME ./configure "${CONFIG_OPTS[@]}"
$CI_TIME make -j4
$CI_TIME make install
echo "Leaving from ${PWD}"
cd "${BASE_PWD}"
echo "Now in ${PWD}"
fi
fi
# Start of recipe for dependency: fty-proto
if ! (command -v dpkg-query >/dev/null 2>&1 && dpkg-query --list libfty_proto-dev >/dev/null 2>&1) || \
(command -v brew >/dev/null 2>&1 && brew ls --versions fty-proto >/dev/null 2>&1) || \
([ -e "fty-proto" ]) \
; then
FOLDER_NAME="fty-proto"
if [ -d "$FOLDER_NAME" ]; then
echo "$FOLDER_NAME already exist. Skipped." >&2
else
echo ""
BASE_PWD=${PWD}
echo "`date`: INFO: Building prerequisite 'fty-proto' from Git repository..." >&2
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "git clone https://github.com/42ity/fty-proto.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/fty-proto.git $FOLDER_NAME
else
if git ls-remote --heads https://github.com/42ity/fty-proto.git | grep -q "$REQUESTED_BRANCH"; then
echo "git clone -b "$REQUESTED_BRANCH" https://github.com/42ity/fty-proto.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 -b "$REQUESTED_BRANCH" https://github.com/42ity/fty-proto.git $FOLDER_NAME
else
echo "$REQUESTED_BRANCH not found for https://github.com/42ity/fty-proto.git"
echo "git clone https://github.com/42ity/fty-proto.git $FOLDER_NAME"
$CI_TIME git clone --quiet --depth 1 https://github.com/42ity/fty-proto.git $FOLDER_NAME
fi
fi
echo "Entering in ${PWD}/${FOLDER_NAME}"
cd "./${FOLDER_NAME}"
CCACHE_BASEDIR=${PWD}
export CCACHE_BASEDIR
git --no-pager log --oneline -n1
if [ -e ci_dependencies.sh ]; then
PROPAGATED_BRANCH="`git branch | grep * | cut -d ' ' -f2`"
DEFAULT_BRANCH="`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`"
if [ "x$REQUESTED_BRANCH" = "x" ]; then
echo "`date`: INFO: Building prerequisites of 'fty-proto' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
elif [ "x$PROPAGATED_BRANCH" = "x$DEFAULT_BRANCH" ]; then
echo "`date`: INFO: Building prerequisites of 'fty-proto' using ci_dependencies.sh the default branch..." >&2
($CI_TIME source ./ci_dependencies.sh)
else
echo "`date`: INFO: Building prerequisites of 'fty-proto' using ci_dependencies.sh $PROPAGATED_BRANCH branch..." >&2
($CI_TIME source ./ci_dependencies.sh $PROPAGATED_BRANCH)
fi
fi
if [ -e autogen.sh ]; then
$CI_TIME ./autogen.sh 2> /dev/null
fi
if [ -e buildconf ]; then
$CI_TIME ./buildconf 2> /dev/null
fi
if [ ! -e autogen.sh ] && [ ! -e buildconf ] && [ ! -e ./configure ] && [ -s ./configure.ac ]; then
$CI_TIME libtoolize --copy --force && \
$CI_TIME aclocal -I . && \
$CI_TIME autoheader && \
$CI_TIME automake --add-missing --copy && \
$CI_TIME autoconf || \
$CI_TIME autoreconf -fiv
fi
$CI_TIME ./configure "${CONFIG_OPTS[@]}"
$CI_TIME make -j4
$CI_TIME make install
echo "Leaving from ${PWD}"
cd "${BASE_PWD}"
echo "Now in ${PWD}"
fi
fi